What are the data catalog option available in open source [closed] - metadata

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 10 months ago.
Improve this question
I would like to know which is the best data catalog available which serves the following requirements.
Open source
Highly available behind load balancer
Describes the dataset
Can describes the data inside the datasets, Ability to have option to describe the fields inside the data
Data set searchable
I looked at ckan and was really impressed but it did not offer describing fields inside the datasets
Is there any other good tool for the same

You can actually extend the CKAN and mold it as per your needs. CKAN is a very versatile and flexible product.
e.g. for describing fields inside CKAN you can use
https://github.com/ckan/ckanext-scheming
or you can create your own extension by following the documentation.
https://docs.ckan.org/en/2.8/extensions/

Have you looked at Lyft's open source data catalog and discovery tool called "Amundsen"?
https://github.com/lyft/amundsen
https://eng.lyft.com/open-sourcing-amundsen-a-data-discovery-and-metadata-platform-2282bb436234

I have used the data catalog part of the engrafo-solution (engrafo.eu)
Open source (free plan for 10 users)
Highly available behind load balancer (?)
Describes the dataset (yes)
Can describes the data inside the datasets, Ability to have option to describe the fields inside the data (yes)
Data set searchable (yes)
a demo on the data catalog

Related

What database to choose from? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Realm Database or MySQL or MongoDB or the standard Firebase.
I am curious why would anyone choose one over another. I am in a group project and one of the members in the group suggested that we should use Realm Database over Firebase. He tried to explain to me the reason but I was not able to comprehend.
What has your experience been like? Is one database more user-friendly over another?
Firebase seems to have very nice documentation.
Which one would you guys suggest?
Those are three different things.
Realm is a database for storing content locally on a device.
MySQL is usually used together with a web server. If you have a server and need to store data, you can use MySQL.
Firebase is Google's alternative for building your own server. It gives you tools that allow you to avoid having to build your own web server, such as Firestore, which lets you do CRUD operations directly from devices without needing to send that information through a server first.
If you works on small project you must going with MYSQL database. Its very simple and easy to understand. But if your project are big like that organisation type projects I recommend you to going with MongoDB.

AEM Package Manager OOTB to filter properties of package filter nodes [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
Is there any OOTB solution to filter some properties like cq:lastReplicated, cq:lastReplicatedBy , etc, I wanted to migrate some code from lower environments to higher these properties shows the newly moved content in author also as replicated especially on sites content. So planning to create the packages with the filters without these properties.
There is no such possibility at the moment. I would suggest to use groovy script (https://github.com/OlsonDigital/cq-groovy-console) to remove not needed properties.
As others have mentioned that there is no such functionality yet. You can either use groovy console or other alternatives as mentioned above or you can unzip your package and use text manipulation to clean the content.xml files to remove the properties. I am sure that some simple XSL or command line should be sufficient to do this.
Package manager is a node level tool so nothing is available to filter properties yet.

Open source tool to extract data from Temenos T24 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Is there an open source tool to extract data from a T24 system to a SQL database? Or maybe a connector for Talend?
Thank you
Short answer is no and no. There is no such open source tool and there is no widely available connector for Talend that I am aware of.
The main issue you have in translating jbase data to SQL is that jbase is not a relational database, and has multi valued fields or groups of fields that do not fit in a relational database, as they are not normalized. Now, in order to connect to jbase and extract info to store in a RDBMS, you would need some kind of api or connector that understands the JEDI. If you check link jbase you will find there is a odbc and a jdbc driver that you can use to connect. But I don't think they are provided free of charge. You have to own jbase database to gain access to them. Alternatively, you could use T24 tool, called DW.EXPORT, to extract information to text format such as csv and then find a way to import that csv to your RDBMS. This is the process used by T24 to export its data to its data warehouse system which uses a relational database.

Kibana equivalent for MongoDB [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
We've fed up with instability and unpredictability of ELK stack but still in love with the Kibana dashboards.
Hence I'm looking for some potential migration paths. MongoDB looks very promising: huge track record, lots of docs, ability to cope with json easily etc.
Is there some equivalent to Kibana working on top of MongoDB? Some web app which lets you easily run search queries over indexed data, make them into dashboards, add nice maps and diagrams etc.
I've looked into https://docs.mongodb.org/ecosystem/tools/administration-interfaces/ but this seems to be more about managing MongoDB itself rather than playing with data in it.
you could have a look at mongodb-compass click here
if you would want more, the new mongodb 3.2 has features to connect to any BI tool, like talend. Read more here

Is there a Drupal module for Forms with powerful CRUD style behaviour? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
We are building a website that contains a large number of database tables that need to be edited by the CMS administrator.
Some of the tables are fed by form submissions from users on the front end of the website.
Some of the tables are purely in the CMS and are used to create custom modules on the front end of the website.
Although there is a forms module in Drupal, I think our requirements cannot be met by it.
Does anyone know of a system that allows forms to be saved to a CRUD style database with the following features?
(source: yart.com.au)
Export of all database fields.
View a summary of the records in a filterable table.
With paging
You can have one to many relationships in records eg
(source: yart.com.au)
To code this manually for 10 forms is A LOT of work. Particularly the one to many relationships. If there is a powerful module available it would save us writing one.
I have not used it at all so far, so I have no clue if it fits your needs, but the Auto Admin module seems to offer at least some of the features you are looking for.
You should look at CCK and check that doesn't meet your requirements before building something bespoke. All of your requirements can be met with a combination of CCK, Views, and a bit of tweaking.
This CRUD operations can be achieved using Drupal 7 modules like data,schema,entity,views and ctools.
Nice article is here: http://subhojit777.in/crud-data-table-in-drupal/
In-place editing for Fields is also possible using quickedit module,but Backbone.js,Underscore.js libraries are required and your Theme should support.