मेरे पास 7.2 मिलियन टुपल्स वाली एक तालिका है जो इस तरह दिखती है:
table public.methods
column | type | attributes
--------+-----------------------+----------------------------------------------------
id | integer | not null DEFAULT nextval('methodkey'::regclass)
hash | character varying(32) | not null
string | character varying | not null
method | character varying | not null
file | character varying | not null
type | character varying | not null
Indexes:
"methods_pkey" PRIMARY KEY, btree (id)
"methodhash" btree (hash)
अब मैं कुछ मूल्यों का चयन करना चाहता हूं, लेकिन क्वेरी अविश्वसनीय रूप से धीमी है:
db=# explain
select hash, string, count(method)
from methods
where hash not in
(select hash from nostring)
group by hash, string
order by count(method) desc;
QUERY PLAN
----------------------------------------------------------------------------------------
Sort (cost=160245190041.10..160245190962.07 rows=368391 width=182)
Sort Key: (count(methods.method))
-> GroupAggregate (cost=160245017241.77..160245057764.73 rows=368391 width=182)
-> Sort (cost=160245017241.77..160245026451.53 rows=3683905 width=182)
Sort Key: methods.hash, methods.string
-> Seq Scan on methods (cost=0.00..160243305942.27 rows=3683905 width=182)
Filter: (NOT (SubPlan 1))
SubPlan 1
-> Materialize (cost=0.00..41071.54 rows=970636 width=33)
-> Seq Scan on nostring (cost=0.00..28634.36 rows=970636 width=33)
hash
स्तंभ के MD5 हैश है string
और एक सूचकांक है। तो मुझे लगता है कि मेरी समस्या यह है कि पूरी तालिका को आईडी द्वारा क्रमबद्ध किया गया है न कि हैश द्वारा, इसलिए इसे पहले सॉर्ट करने में कुछ समय लगता है और फिर इसे समूहित करता है?
तालिका nostring
में केवल उन हैश की एक सूची है जो मेरे पास नहीं है। लेकिन मुझे सभी मूल्यों के लिए दोनों तालिकाओं की आवश्यकता है। इसलिए यह इन्हें हटाने का विकल्प नहीं है।
अतिरिक्त जानकारी: स्तंभों में से कोई भी शून्य नहीं हो सकता है (तालिका परिभाषा में तय किया गया है) और मैं पोस्टग्रेजिक 9.2 का उपयोग कर रहा हूं।
NULL
कॉलम में मानों का प्रतिशत क्या हैmethod
? वहाँ पर डुप्लिकेट हैंstring
?