BlueShift Brasil

Results 9 comments of BlueShift Brasil

I'm working on this. Considering using the same Apache Camel strategy: http://www.jasypt.org/encrypting-configuration.html I'm open to suggestions. ;-)

Suggestion: make a refactoring on **org.apache.fluo.core.util.ScanUtil** to receive a **java.io.OutputStream** or a **java.io.Writer** or both to avoid something like that: ```java System.out.println(sb.toString()); ``` Could this be done in that same...

I'm working on this. Do you think we could use the commons-csv lib? I believe we could use it for both the current format (tsv like) and for csv format....

In **distribution** module, fetch.sh file, are there any reason for this dependency to be in this version? ```bash download com.google.code.gson:gson:jar:2.2.4 ``` In Fluo pom.xml we are in 2.8.0. Can I...

Sample of CSV file: ```csv [root@6cf4e94e7248 share]# fluo scan -a myapp --csv "ROW";"COLUMN_FAMILY";"COLUMN_QUALIFIER";"COLUMN_VISIBILITY";"VALUE" "HISTORICO:123:1:10:100:17bc30e1-4c55-4037-9bb8-032b2c422935";"cadastral";"DAT_NSC";"";"111111111" "HISTORICO:123:1:10:100:17bc30e1-4c55-4037-9bb8-032b2c422935";"cadastral";"NOM_RAZ_SOC";"";"yyy" "HISTORICO:123:1:10:100:18f73b40-d14c-4717-83cf-4a63f4012e9c";"cadastral";"DAT_NSC";"";"111111111" "HISTORICO:123:1:10:100:18f73b40-d14c-4717-83cf-4a63f4012e9c";"cadastral";"NOM_RAZ_SOC";"";"yyy ;" "HISTORICO:123:1:10:100:5a30271c-513a-47f3-86fd-dbf0edb98f93";"cadastral";"DAT_NSC";"";"111111111" "HISTORICO:123:1:10:100:5a30271c-513a-47f3-86fd-dbf0edb98f93";"cadastral";"NOM_RAZ_SOC";"";"yyy" "HISTORICO:123:1:10:100:ddba1524-05c6-4bbe-89db-a85a8bca6b22";"cadastral";"DAT_NSC";"";"111111111" "HISTORICO:123:1:10:100:ddba1524-05c6-4bbe-89db-a85a8bca6b22";"cadastral";"NOM_RAZ_SOC";"";"yyy" "HISTORICO:123:1:10:100:fd36a744-54de-4377-9396-3043ac01064d";"cadastral";"DAT_NSC";"";"111111111" "HISTORICO:123:1:10:100:fd36a744-54de-4377-9396-3043ac01064d";"cadastral";"NOM_RAZ_SOC";"";"yyy" ``` JSON file: ```javascript [root@6cf4e94e7248 share]#...

About the config in the command line, I believe is possible keep both. It’s a good idea! The command line could overwrite the property config. Even if the user don’t...

Now we have 3 options to configure the scan command: - Based on fluo-app.properties - Based on --csv-* parameters - And based on -o overwrite parameter ```bash [root@9bb10c2c941e share]# fluo...

In Apache Camel project they use an util class called URISupport to obfuscate sensitive data from URL's. ```java public static String sanitizeUri(String uri) { // use xxxxx as replacement as...

Maybe there something to see here: https://github.com/apache/nifi/tree/master/nifi-external In Storm integration there are implementations to capture data from NiFi (NiFiSpout) and to send it back (NiFiBolt).