[jira] [Updated] (IGNITE-17179) Thin 3.0: SQL metadata caching

2022-10-18 Thread Vyacheslav Koptilin (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-17179?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vyacheslav Koptilin updated IGNITE-17179:
-
Fix Version/s: 3.0.0-beta2
   (was: 3.0.0-beta1)

> Thin 3.0: SQL metadata caching
> --
>
> Key: IGNITE-17179
> URL: https://issues.apache.org/jira/browse/IGNITE-17179
> Project: Ignite
>  Issue Type: Improvement
>  Components: thin client
>Affects Versions: 3.0.0-alpha5
>Reporter: Pavel Tupitsyn
>Assignee: Pavel Tupitsyn
>Priority: Minor
>  Labels: ignite-3
> Fix For: 3.0.0-beta2
>
>
> We send query metadata to the client with every request (IGNITE-17052). It is 
> a waste of resources when the same query is executed frequently.
> * Cache metadata on server, generate unique ID
> * Return the ID to the client
> * Client retrieves cached metadata from server when not known, caches it 
> locally
> However, some queries can be one-off and unique. The cache can grow too big 
> over the lifetime of the application.
> * Use the cache only for queries that have executed N times (detect this on 
> the server)
> * Limit cache size, use LRU eviction (client and server)
> Do not use query text as cache key - column types can change. Use the entire 
> metadata content to check cache entry equality.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-17179) Thin 3.0: SQL metadata caching

2022-09-15 Thread Konstantin Orlov (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-17179?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Konstantin Orlov updated IGNITE-17179:
--
Epic Link:   (was: IGNITE-16952)

> Thin 3.0: SQL metadata caching
> --
>
> Key: IGNITE-17179
> URL: https://issues.apache.org/jira/browse/IGNITE-17179
> Project: Ignite
>  Issue Type: Improvement
>  Components: thin client
>Affects Versions: 3.0.0-alpha5
>Reporter: Pavel Tupitsyn
>Assignee: Pavel Tupitsyn
>Priority: Minor
>  Labels: ignite-3
> Fix For: 3.0.0-alpha6
>
>
> We send query metadata to the client with every request (IGNITE-17052). It is 
> a waste of resources when the same query is executed frequently.
> * Cache metadata on server, generate unique ID
> * Return the ID to the client
> * Client retrieves cached metadata from server when not known, caches it 
> locally
> However, some queries can be one-off and unique. The cache can grow too big 
> over the lifetime of the application.
> * Use the cache only for queries that have executed N times (detect this on 
> the server)
> * Limit cache size, use LRU eviction (client and server)
> Do not use query text as cache key - column types can change. Use the entire 
> metadata content to check cache entry equality.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (IGNITE-17179) Thin 3.0: SQL metadata caching

2022-06-15 Thread Pavel Tupitsyn (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-17179?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pavel Tupitsyn updated IGNITE-17179:

Description: 
We send query metadata to the client with every request (IGNITE-17052). It is a 
waste of resources when the same query is executed frequently.

* Cache metadata on server, generate unique ID
* Return the ID to the client
* Client retrieves cached metadata from server when not known, caches it locally

However, some queries can be one-off and unique. The cache can grow too big 
over the lifetime of the application.
* Use the cache only for queries that have executed N times (detect this on the 
server)
* Limit cache size, use LRU eviction (client and server)

Do not use query text as cache key - column types can change. Use the entire 
metadata content to check cache entry equality.


  was:
We send query metadata to the client with every request (IGNITE-17052). It is a 
waste of resources when the same query is executed frequently.

* Cache metadata on server, generate unique ID
* Return the ID to the client
* Client retrieves cached metadata from server when not known, caches it locally



> Thin 3.0: SQL metadata caching
> --
>
> Key: IGNITE-17179
> URL: https://issues.apache.org/jira/browse/IGNITE-17179
> Project: Ignite
>  Issue Type: Improvement
>  Components: thin client
>Affects Versions: 3.0.0-alpha5
>Reporter: Pavel Tupitsyn
>Assignee: Pavel Tupitsyn
>Priority: Minor
>  Labels: ignite-3
> Fix For: 3.0.0-alpha6
>
>
> We send query metadata to the client with every request (IGNITE-17052). It is 
> a waste of resources when the same query is executed frequently.
> * Cache metadata on server, generate unique ID
> * Return the ID to the client
> * Client retrieves cached metadata from server when not known, caches it 
> locally
> However, some queries can be one-off and unique. The cache can grow too big 
> over the lifetime of the application.
> * Use the cache only for queries that have executed N times (detect this on 
> the server)
> * Limit cache size, use LRU eviction (client and server)
> Do not use query text as cache key - column types can change. Use the entire 
> metadata content to check cache entry equality.



--
This message was sent by Atlassian Jira
(v8.20.7#820007)