Posts by bgsouza • 129 points
13 posts
-
0
votes1
answer22
viewsA: Nifi consuming all available disk space
The goal was an initial setup, my query brought the data at once, I should have paged the query and increased the processor delay before.
apache-nifianswered bgsouza 129 -
0
votes1
answer22
viewsQ: Nifi consuming all available disk space
I have some processes that search on an SQL basis and play to a queue In the queue I limited the size in 100mb and the quantity in 10, but even so the Nifi ignores and allocates everything at once,…
apache-nifiasked bgsouza 129 -
0
votes3
answers585
viewsA: How to use Rewrite to include subdirectory and Slug?
A very simple way would be: .htaccess RewriteEngine on RewriteCond %{REQUEST_URI} !-f RewriteCond %{REQUEST_URI} !-d RewriteCond %{REQUEST_URI} !/index\.php RewriteRule ^(.*)$…
-
1
votes1
answer39
viewsA: Date formatting problem Standard 5.5
Probably your date is going with '/', in php you need to replace with '-' example: $data = '27/02/2018'; echo date('Y-m-d', strtotime(str_replace('/','-',$data)));
-
0
votes1
answer50
viewsA: Record edit form does not change
You are not sending your id on the form, it needs to be on a <input type="hidden" .../> and also give a studied in design Patterns, code quality these things... Because I don’t know what level…
-
0
votes1
answer177
viewsA: Help Chrome Puppeteer Paging
I ended up solving with a waitforTimeout() after the execution of the click.
-
0
votes1
answer177
viewsQ: Help Chrome Puppeteer Paging
I’m doing a Webcrawler, in the following stream Access a search URL Collecting the information Execute pagination (here is the error) Click to the next page, reload it (then I tried to force a…
-
3
votes2
answers292
viewsA: Doubt Search in Elasticsearch
I managed to evolve a little using minimum_should_match: GET _search { "query": { "match": { "nome": { "query": "caixa som", "minimum_should_match": "95%" } } }, "size": 15, "from": 15 } but I can’t…
elasticsearchanswered bgsouza 129 -
3
votes2
answers292
viewsQ: Doubt Search in Elasticsearch
when searching for a term "foo in Blabla bla" I need to return all items that have "blablah blah" and then in order of relevance "foo" "blablah" someone has a light? Thank you
elasticsearchasked bgsouza 129 -
0
votes1
answer34
viewsA: Sub Gruntfile.js Inheriting node_modules from root
My code was working, it only read the parent Gruntfile.js during the command "watch" I put an options: {cwd:""} and it worked 100% now
-
1
votes1
answer34
viewsQ: Sub Gruntfile.js Inheriting node_modules from root
I am in a project (in Laravel 4.2) where they made a mega Gruntfile.js, ai decided to organize and create a Gruntfile.js for each set of "Assets" of projects. The Problem: I don’t want to have to…
-
1
votes1
answer426
viewsA: Ajax REST: PUT/DELETE does not work
Guys I managed to solve my problem, actually it was Laravel’s CSRF that was blocking me I decided to implement a token :)
-
0
votes1
answer426
viewsQ: Ajax REST: PUT/DELETE does not work
I have 2 applications: 1) a Rest API on an XPTO server (Using Laravel 5.1), which has: ->header('Access-Control-Allow-Origin', '*.xpto.com.br') ->header('Access-Control-Allow-Credentials',…