This is an automated email from the ASF dual-hosted git repository.
isapego pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 3bacb36a5ad IGNITE-27673 Fix incorrect branding (#7484)
3bacb36a5ad is described below
commit 3bacb36a5ad7c4248fa0509bebc63244602e2b91
Author: IgGusev <[email protected]>
AuthorDate: Tue Jan 27 15:54:22 2026 +0200
IGNITE-27673 Fix incorrect branding (#7484)
---
docs/_docs/sql-tuning/sql-tuning.adoc | 2 +-
examples/python/db_api_example.py | 20 ++++++++++----------
examples/sql/distribution-zones.sql | 2 +-
3 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/docs/_docs/sql-tuning/sql-tuning.adoc
b/docs/_docs/sql-tuning/sql-tuning.adoc
index 7fb30fd1ff9..4722bfabb85 100644
--- a/docs/_docs/sql-tuning/sql-tuning.adoc
+++ b/docs/_docs/sql-tuning/sql-tuning.adoc
@@ -398,7 +398,7 @@ Apache Ignite 3 tracks how many rows change and decides
when a cached plan shoul
=== How Staleness Detection Works
-For each table, GridGain tracks the number of modifications and if such
modifications exceed a configurable threshold - statistics are considered stale
and:
+For each table, Ignite tracks the number of modifications and if such
modifications exceed a configurable threshold - statistics are considered stale
and:
- Fresh statistics are automatically recollected
diff --git a/examples/python/db_api_example.py
b/examples/python/db_api_example.py
index a19d96226b1..537ed38073a 100644
--- a/examples/python/db_api_example.py
+++ b/examples/python/db_api_example.py
@@ -1,15 +1,15 @@
-import pygridgain_dbapi
-from pygridgain_dbapi import DatabaseError
+import pyignite3_dbapi
+from pyignite3_dbapi import DatabaseError
def create_simple_connection():
- """Create a basic connection to GridGain cluster."""
+ """Create a basic connection to Ignite cluster."""
addr = ['127.0.0.1:10800']
- return pygridgain_dbapi.connect(address=addr, timeout=10)
+ return pyignite3_dbapi.connect(address=addr, timeout=10)
def create_ssl_connection():
- """Create SSL-enabled connection to GridGain cluster."""
+ """Create SSL-enabled connection to Ignite cluster."""
addr = ['127.0.0.1:10800']
- return pygridgain_dbapi.connect(
+ return pyignite3_dbapi.connect(
address=addr,
timeout=10,
use_ssl=True,
@@ -19,9 +19,9 @@ def create_ssl_connection():
)
def create_authenticated_connection():
- """Create authenticated connection to GridGain cluster."""
+ """Create authenticated connection to Ignite cluster."""
addr = ['127.0.0.1:10800']
- return pygridgain_dbapi.connect(
+ return pyignite3_dbapi.connect(
address=addr,
timeout=10,
identity='user',
@@ -127,8 +127,8 @@ def connection_examples():
print("2. SSL and authenticated connections available via helper functions")
def main():
- """Main function demonstrating GridGain DB API usage."""
- print("GridGain DB API Example")
+ """Main function demonstrating Ignite DB API usage."""
+ print("Ignite DB API Example")
print("=" * 30)
try:
diff --git a/examples/sql/distribution-zones.sql
b/examples/sql/distribution-zones.sql
index 023791d80f5..491df20b36c 100644
--- a/examples/sql/distribution-zones.sql
+++ b/examples/sql/distribution-zones.sql
@@ -25,7 +25,7 @@ CREATE ZONE IF NOT EXISTS auto_scale_down_zone (AUTO SCALE
DOWN 600) STORAGE PRO
-- The following example requires nodes to be configured with
-- the 'storage' attribute set to 'SSD'. To configure node attributes,
--- use the GridGain CLI or configuration files.
+-- use the Ignite CLI or configuration files.
-- CREATE ZONE IF NOT EXISTS ssd_only_zone (NODES FILTER '$[?(@.storage ==
"SSD")]') STORAGE PROFILES['default'];
-- Create a zone with high availability mode and 5 replicas