Member since
07-30-2019
333
Posts
356
Kudos Received
76
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
9880 | 02-17-2017 10:58 PM | |
2301 | 02-16-2017 07:55 PM | |
7987 | 12-21-2016 06:24 PM | |
1759 | 12-20-2016 01:29 PM | |
1235 | 12-16-2016 01:21 PM |
03-30-2023
12:37 AM
Where can i get the client id?
... View more
12-08-2021
09:10 AM
[ 0%] Built target date-tz [ 1%] Built target spdlog-externa [ 2%] Built target ossp-uuid-externa [ 4%] Built target zlib-externa [ 5%] Built target yaml-cpp-externa [ 5%] Performing build step for 'libressl-portable Consolidate compiler generated dependencies of target crypt [ 0%] Building C object crypto/CMakeFiles/crypto.dir/cryptlib.c. In file included from /data/data/com.termux/files/home/nifi-minifi-cpp/build/thirdparty/libressl-src/crypto/cryptlib.c:121 /data/data/com.termux/files/home/nifi-minifi-cpp/build/thirdparty/libressl-src/crypto/../include/compat/syslog.h:32:6: error: conflicting types for 'android_polyfill_syslog_r void syslog_r(int, struct syslog_data *, const char *, ...) /data/data/com.termux/files/usr/include/syslog.h:176:18: note: expanded from macro 'syslog_r #define syslog_r android_polyfill_syslog_ /data/data/com.termux/files/usr/include/syslog.h:161:24: note: previous definition is her static __inline__ void android_polyfill_syslog_r(int syslog_priority, void* d, const char* format, ... In file included from /data/data/com.termux/files/home/nifi-minifi-cpp/build/thirdparty/libressl-src/crypto/cryptlib.c:121 /data/data/com.termux/files/home/nifi-minifi-cpp/build/thirdparty/libressl-src/crypto/../include/compat/syslog.h:33:6: error: conflicting types for 'android_polyfill_vsyslog_r void vsyslog_r(int, struct syslog_data *, const char *, va_list) /data/data/com.termux/files/usr/include/syslog.h:177:19: note: expanded from macro 'vsyslog_r #define vsyslog_r android_polyfill_vsyslog_ /data/data/com.termux/files/usr/include/syslog.h:170:24: note: previous definition is her static __inline__ void android_polyfill_vsyslog_r(int syslog_priority, void* d, const char* fmt, va_list ap 2 errors generated make[5]: *** [crypto/CMakeFiles/crypto.dir/build.make:188: crypto/CMakeFiles/crypto.dir/cryptlib.c.o] Error make[4]: *** [CMakeFiles/Makefile2:197: crypto/CMakeFiles/crypto.dir/all] Error make[3]: *** [Makefile:146: all] Error make[2]: *** [CMakeFiles/libressl-portable.dir/build.make:86: libressl-portable-prefix/src/libressl-portable-stamp/libressl-portable-build] Error make[1]: *** [CMakeFiles/Makefile2:1076: CMakeFiles/libressl-portable.dir/all] Error make: *** [Makefile:166: all] Error 222221.^)e^r'^;':^)e^r'^;':oo'llll[Makefile:166: all] Error 2
... View more
10-28-2020
03:21 AM
Hi there, I was able to get this to work in my select but not in my where clause - any advice? Thank you in advance! Select date_sub(start_time, 0) , anchor_id From a.b where date = max_pt(a.b) and date_sub(start_time, 0) >= '${date-28}'
... View more
08-10-2020
08:32 PM
1 Kudo
I had similar issue today, where Nifi server was up, but UI kept spinning. I did clear browser cache and restarted the server, and browser. The UI came back fine. Just mentioning it for others, who may have similar issue,
... View more
06-24-2020
07:50 PM
If you execute "rmr /solr". you may encounter following authentication error. rmr /solr Authentication is not valid : /solr/security To workaround this you can use skipACL option, which found in the following site. https://www.programmersought.com/article/60861634876/ Note: This is workaround steps in Cloudera Manager. 1. Zookeeper->Configration->java Configuration Options for Zookeeper Server Add -Dzookeeper.skipACL=yes 2. Restart the zookeeper service Remember to revert the change and restart zookeeper after you manage to remove /solr rgds, Rama.
... View more
05-08-2020
12:11 PM
@Griggsy I'd strongly encourage you to start a new question rather then asking for help on an existing question with an already accepted solution. You'll get better traction and visibility that way. Matt
... View more
03-31-2020
08:56 AM
For example I want to transform the zabbix payload from v4.0 to v4.4: Zabbix Json Payload v4.0 (INPUT) {
"hosts": [
"Host B",
"Zabbix Server"
],
"groups": [
"Group X",
"Group Y",
"Group Z",
"Zabbix servers"
],
"tags": [
{
"tag": "availability",
"value": ""
},
{
"tag": "data center",
"value": "Riga"
}
],
"name": "Either Zabbix agent is unreachable",
"clock": 1519304285,
"ns": 123456789,
"eventid": 42,
"value": 1
} the JOLT transform: [
{
"operation": "shift",
"spec": {
"hosts": {
"*": [
"hosts.[&].host",
"hosts.[&].name"
]
},
"*": "&"
}
}
] The result ( Zabbix v4.4) {
"hosts" : [ {
"host" : "Host B",
"name" : "Host B"
}, {
"host" : "Zabbix Server",
"name" : "Zabbix Server"
} ],
"groups" : [ "Group X", "Group Y", "Group Z", "Zabbix servers" ],
"tags" : [ {
"tag" : "availability",
"value" : ""
}, {
"tag" : "data center",
"value" : "Riga"
} ],
"name" : "Either Zabbix agent is unreachable",
"clock" : 1519304285,
"ns" : 123456789,
"eventid" : 42,
"value" : 1
}
... View more
07-27-2017
03:45 AM
I agree This flow shows workflow for log collection, aggregation, store and display.
Ingest logs from folders. Listen for syslogs on UDP port. Merge syslogs and drop-in logs and persist merged logs to Solr for historical search. Dashboard: stream real-time log events to dashboard and enable cross-filter search on historical logs data https://community.hortonworks.com/articles/961/a-collection-of-nifi-examples.html
... View more
06-14-2019
09:57 AM
The solution for me was to chmod 777. @adel gacem 755 is not enough.
... View more
02-16-2017
08:06 PM
1 Kudo
Hi @Andrew Grande , Thanks for the response, I have seen this when threads are set more than one for some processors and these settings worked so far exactly when funnel is not involved. thats why It is confusing.
... View more