51 lines
1.9 KiB
Python
51 lines
1.9 KiB
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2021 Memgraph Ltd.
|
|
#
|
|
# Use of this software is governed by the Business Source License
|
|
# included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source
|
|
# License, and you may not use this file except in compliance with the Business Source License.
|
|
#
|
|
# As of the Change Date specified in that file, in accordance with
|
|
# the Business Source License, use of this software will be governed
|
|
# by the Apache License, Version 2.0, included in the file
|
|
# licenses/APL.txt.
|
|
|
|
from neo4j import GraphDatabase, basic_auth
|
|
|
|
driver = GraphDatabase.driver("bolt://localhost:7687",
|
|
auth=basic_auth("", ""),
|
|
encrypted=False)
|
|
|
|
query_template = 'CREATE (n {name:"%s"})'
|
|
template_size = len(query_template) - 2 # because of %s
|
|
min_len = 1
|
|
max_len = 1000000
|
|
|
|
# binary search because we have to find the maximum size (in number of chars)
|
|
# of a query that can be executed via driver
|
|
while True:
|
|
assert min_len > 0 and max_len > 0, \
|
|
"The lengths have to be positive values! If this happens something" \
|
|
" is terrible wrong with min & max lengths OR the database" \
|
|
" isn't available."
|
|
property_size = (max_len + min_len) // 2
|
|
try:
|
|
driver.session().run(query_template % ("a" * property_size)).consume()
|
|
if min_len == max_len or property_size + 1 > max_len:
|
|
break
|
|
min_len = property_size + 1
|
|
except Exception as e:
|
|
print("Query size %s is too big!" % (template_size + property_size))
|
|
max_len = property_size - 1
|
|
|
|
assert property_size == max_len, "max_len probably has to be increased!"
|
|
|
|
print("\nThe max length of a query from Python driver is: %s\n" %
|
|
(template_size + property_size))
|
|
|
|
# sessions are not closed bacause all sessions that are
|
|
# executed with wrong query size might be broken
|
|
driver.close()
|