PyIgnite scan freezes Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!“Large data” work flows using pandasHow to inject spring resources into Apache Ignite classes?How to insert JSON into Apache Ignite Cache on the fly (without Java class) using Binary Builder?how to add query for simple cache in ignite web consoleApache Zeppelin 'Failed to start Ignite node' error when integrating with IgniteApache Ignite Failed to find SQL tableApache Ignite sql query returns only cache contents, not complete results from databaseCannot insert records into Apache Ignite cache from Apache Spark RDDCustom SQL Function Not Found on Server Node at Run-timeApache Ignite - SQL query on a simple cache

Should man-made satellites feature an intelligent inverted "cow catcher"?

.bashrc alias for a command with fixed second parameter

What is "Lambda" in Heston's original paper on stochastic volatility models?

A question about the degree of an extension field

Is the time—manner—place ordering of adverbials an oversimplification?

Random body shuffle every night—can we still function?

One-one communication

Centre cell vertically in tabularx

How do Java 8 default methods hеlp with lambdas?

Did John Wesley plagiarize Matthew Henry...?

Derived column in a data extension

Pointing to problems without suggesting solutions

Where did Ptolemy compare the Earth to the distance of fixed stars?

How to make triangles with rounded sides and corners? (squircle with 3 sides)

Does the transliteration of 'Dravidian' exist in Hindu scripture? Does 'Dravida' refer to a Geographical area or an ethnic group?

Why complex landing gears are used instead of simple, reliable and light weight muscle wire or shape memory alloys?

Statistical analysis applied to methods coming out of Machine Learning

How does the body cool itself in a stillsuit?

What does 丫 mean? 丫是什么意思?

Is a copyright notice with a non-existent name be invalid?

Inverse square law not accurate for non-point masses?

By what mechanism was the 2017 UK General Election called?

What did Turing mean when saying that "machines cannot give rise to surprises" is due to a fallacy?

Sally's older brother



PyIgnite scan freezes



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!“Large data” work flows using pandasHow to inject spring resources into Apache Ignite classes?How to insert JSON into Apache Ignite Cache on the fly (without Java class) using Binary Builder?how to add query for simple cache in ignite web consoleApache Zeppelin 'Failed to start Ignite node' error when integrating with IgniteApache Ignite Failed to find SQL tableApache Ignite sql query returns only cache contents, not complete results from databaseCannot insert records into Apache Ignite cache from Apache Spark RDDCustom SQL Function Not Found on Server Node at Run-timeApache Ignite - SQL query on a simple cache



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I try to scan all values from Ignite cache. I manage to create generator with cache.scan() method but when I want to get next value from generator it freezes.



from pyignite import Client

client = Client()
client.connect('127.0.0.1', 10800)
cache = client.get_cache('CACHE_NAME')
all_results_gen = cache.scan()
result = next(all_results_gen) # makes interpreter freeze


EDIT:
It may be related that this cache is also used by Java app.



EDIT2: I think it might be something about java types conversion to python. Maybe with sql queries it will be easier to get this values.










share|improve this question
























  • How many entries in this cache? Any errors displayed on server node?

    – alamar
    Mar 22 at 13:13











  • There should be 29 records so that's not about quantity also there is no error thrown at ignite server

    – Konrad Sitarz
    Mar 22 at 13:19











  • Can you provide a small reproducer project somewhere?

    – alamar
    Mar 22 at 13:31











  • Java app creates cache with table for example Measurement. While i try to select with pyginite and sql query like client.sql("SELECT * FROM Measurement") it shows that there is no table with this name.

    – Konrad Sitarz
    Mar 22 at 13:46











  • This sounds like a separate question.

    – alamar
    Mar 22 at 13:47

















0















I try to scan all values from Ignite cache. I manage to create generator with cache.scan() method but when I want to get next value from generator it freezes.



from pyignite import Client

client = Client()
client.connect('127.0.0.1', 10800)
cache = client.get_cache('CACHE_NAME')
all_results_gen = cache.scan()
result = next(all_results_gen) # makes interpreter freeze


EDIT:
It may be related that this cache is also used by Java app.



EDIT2: I think it might be something about java types conversion to python. Maybe with sql queries it will be easier to get this values.










share|improve this question
























  • How many entries in this cache? Any errors displayed on server node?

    – alamar
    Mar 22 at 13:13











  • There should be 29 records so that's not about quantity also there is no error thrown at ignite server

    – Konrad Sitarz
    Mar 22 at 13:19











  • Can you provide a small reproducer project somewhere?

    – alamar
    Mar 22 at 13:31











  • Java app creates cache with table for example Measurement. While i try to select with pyginite and sql query like client.sql("SELECT * FROM Measurement") it shows that there is no table with this name.

    – Konrad Sitarz
    Mar 22 at 13:46











  • This sounds like a separate question.

    – alamar
    Mar 22 at 13:47













0












0








0








I try to scan all values from Ignite cache. I manage to create generator with cache.scan() method but when I want to get next value from generator it freezes.



from pyignite import Client

client = Client()
client.connect('127.0.0.1', 10800)
cache = client.get_cache('CACHE_NAME')
all_results_gen = cache.scan()
result = next(all_results_gen) # makes interpreter freeze


EDIT:
It may be related that this cache is also used by Java app.



EDIT2: I think it might be something about java types conversion to python. Maybe with sql queries it will be easier to get this values.










share|improve this question
















I try to scan all values from Ignite cache. I manage to create generator with cache.scan() method but when I want to get next value from generator it freezes.



from pyignite import Client

client = Client()
client.connect('127.0.0.1', 10800)
cache = client.get_cache('CACHE_NAME')
all_results_gen = cache.scan()
result = next(all_results_gen) # makes interpreter freeze


EDIT:
It may be related that this cache is also used by Java app.



EDIT2: I think it might be something about java types conversion to python. Maybe with sql queries it will be easier to get this values.







python ignite






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 22 at 13:57







Konrad Sitarz

















asked Mar 22 at 12:44









Konrad SitarzKonrad Sitarz

595217




595217












  • How many entries in this cache? Any errors displayed on server node?

    – alamar
    Mar 22 at 13:13











  • There should be 29 records so that's not about quantity also there is no error thrown at ignite server

    – Konrad Sitarz
    Mar 22 at 13:19











  • Can you provide a small reproducer project somewhere?

    – alamar
    Mar 22 at 13:31











  • Java app creates cache with table for example Measurement. While i try to select with pyginite and sql query like client.sql("SELECT * FROM Measurement") it shows that there is no table with this name.

    – Konrad Sitarz
    Mar 22 at 13:46











  • This sounds like a separate question.

    – alamar
    Mar 22 at 13:47

















  • How many entries in this cache? Any errors displayed on server node?

    – alamar
    Mar 22 at 13:13











  • There should be 29 records so that's not about quantity also there is no error thrown at ignite server

    – Konrad Sitarz
    Mar 22 at 13:19











  • Can you provide a small reproducer project somewhere?

    – alamar
    Mar 22 at 13:31











  • Java app creates cache with table for example Measurement. While i try to select with pyginite and sql query like client.sql("SELECT * FROM Measurement") it shows that there is no table with this name.

    – Konrad Sitarz
    Mar 22 at 13:46











  • This sounds like a separate question.

    – alamar
    Mar 22 at 13:47
















How many entries in this cache? Any errors displayed on server node?

– alamar
Mar 22 at 13:13





How many entries in this cache? Any errors displayed on server node?

– alamar
Mar 22 at 13:13













There should be 29 records so that's not about quantity also there is no error thrown at ignite server

– Konrad Sitarz
Mar 22 at 13:19





There should be 29 records so that's not about quantity also there is no error thrown at ignite server

– Konrad Sitarz
Mar 22 at 13:19













Can you provide a small reproducer project somewhere?

– alamar
Mar 22 at 13:31





Can you provide a small reproducer project somewhere?

– alamar
Mar 22 at 13:31













Java app creates cache with table for example Measurement. While i try to select with pyginite and sql query like client.sql("SELECT * FROM Measurement") it shows that there is no table with this name.

– Konrad Sitarz
Mar 22 at 13:46





Java app creates cache with table for example Measurement. While i try to select with pyginite and sql query like client.sql("SELECT * FROM Measurement") it shows that there is no table with this name.

– Konrad Sitarz
Mar 22 at 13:46













This sounds like a separate question.

– alamar
Mar 22 at 13:47





This sounds like a separate question.

– alamar
Mar 22 at 13:47












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55299911%2fpyignite-scan-freezes%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55299911%2fpyignite-scan-freezes%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript