Member since
04-18-2017
14
Posts
2
Kudos Received
0
Solutions
08-04-2017
12:22 AM
@anaik I am looking for; from Atlas to MySQL or Atlas to Hive. Can this be done using Sqoop?
... View more
06-21-2017
11:00 AM
3 Kudos
Hi
@Saba Baig if you want to add one more column in Search table then first make sure that your api will return "testCol" attribute same like name, description etc.
Once your done with API then go to SearchResultLayoutView.js. and in getFixedDslColumn funciton add your column.
I am assuming your attribute value is string. so here you go.
col['testCol'] = {
label: "your Label", // you can see this label on table header
cell: "String",
editable: false,
sortable: false,
};
So based on col['testCol'] it will get the testCol value from model and display in table cell recursively. Note : If your attribute value is not string or you want to modify cell output then see this example:
... View more
06-06-2017
04:59 PM
https://dev.mysql.com/doc/refman/5.7/en/writing-plugins.html MySQL does offer capability to write plugins which might offer similar functionality as the Hive|AtlasHook.
... View more
09-14-2017
12:08 PM
1 Kudo
1) Start Atlas in debug mode first you want to add extra JVM options in the startup script , so in atlas_start.py replace this line DEFAULT_JVM_OPTS="-Dlog4j.configuration=atlas-log4j.xml -Djava.net.preferIPv4Stack=true -server" with this DEFAULT_JVM_OPTS="-Dlog4j.configuration=atlas-log4j.xml -Djava.net.preferIPv4Stack=true -server -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=54371,server=y,suspend=y "
Now, when you start Atlas, it will hang until you connect with the debugger (because of the suspend=y). 2) connect from Eclipse remote debugger Make sure you have imported the Atlas project into Eclipse based on this document: http://atlas.apache.org/EclipseSetup.html Then create a new debug configurations under the following menu: /Run/Debug Configurations... Make sure the port is set to the same above (54371) and connection type is Standard (socket attach) Use Eclipse JDT launcher.
... View more