Re: [HACKERS] string_to_array eats too much memory?

2006-11-09 Thread Michael Paesold

Tom Lane writes:

Tatsuo Ishii [EMAIL PROTECTED] writes:

string_to_array() consumes too much memory. For example, to make
~70k array elements, string_to_array seems to eat several Gig bytes
of memory.


I'd argue that the problem comes from enlarging the work arrays only
64 elements at a time in accumArrayResult(). Most of the rest of the
code deals with resizing arrays using a double it each time it has
to grow approach, I wonder why this is different?


Without reading the code, I guess that simply means O(n^2) runtime. This 
should be fixed, then, right?


Best Regards,
Michael Paesold


---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
  choose an index scan if your joining column's datatypes do not
  match


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Teodor Sigaev

I'm playing with GIN to make a full text search system. GIN comes with
built-in TEXT[] support and I use string_to_array() to make a
TEXT[]. Problem is, if there's large number of array elemets,
string_to_array() consumes too much memory. For example, to make ~70k
array elements, string_to_array seems to eat several Gig bytes of
memory. ~70k array elements means there are same number of words in a
document which is not too big in a large text IMO.


Do you mean 70k unique lexemes? Ugh.
Why do not you use tsearch framework?

--
Teodor Sigaev   E-mail: [EMAIL PROTECTED]
   WWW: http://www.sigaev.ru/

---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
  subscribe-nomail command to [EMAIL PROTECTED] so that your
  message can get through to the mailing list cleanly


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Tatsuo Ishii
  I'm playing with GIN to make a full text search system. GIN comes with
  built-in TEXT[] support and I use string_to_array() to make a
  TEXT[]. Problem is, if there's large number of array elemets,
  string_to_array() consumes too much memory. For example, to make ~70k
  array elements, string_to_array seems to eat several Gig bytes of
  memory. ~70k array elements means there are same number of words in a
  document which is not too big in a large text IMO.
 
 Do you mean 70k unique lexemes? Ugh.

I'm testing how GIN scales.

 Why do not you use tsearch framework?

? I thought GIN is superior than tsearch2. 

From your GIN proposal posted to pgsql-hackers:

The primary goal of the Gin index is a scalable full text search in
PostgreSQL

What do you think?:-)
--
Tatsuo Ishii
SRA OSS, Inc. Japan

---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Magnus Hagander
   I'm playing with GIN to make a full text search system. GIN comes 
   with built-in TEXT[] support and I use string_to_array() 
 to make a 
   TEXT[]. Problem is, if there's large number of array elemets,
   string_to_array() consumes too much memory. For example, to make 
   ~70k array elements, string_to_array seems to eat several 
 Gig bytes 
   of memory. ~70k array elements means there are same 
 number of words 
   in a document which is not too big in a large text IMO.
  
  Do you mean 70k unique lexemes? Ugh.
 
 I'm testing how GIN scales.
 
  Why do not you use tsearch framework?
 
 ? I thought GIN is superior than tsearch2. 
 
 From your GIN proposal posted to pgsql-hackers:
 
 The primary goal of the Gin index is a scalable full text 
 search in PostgreSQL

tsearch2 *uses* GIN in 8.2. Just CREATE INDEX foo ON bar USING
gin(mytsvector).

And tsearch2 in 8.2 with GIN can be a *lot* faster than with GIST. I've
been running experiments on the website search with tsearch2/GIN and
i've been seeing fantastic performance compared top revious versions.



//Magnus

---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
   subscribe-nomail command to [EMAIL PROTECTED] so that your
   message can get through to the mailing list cleanly


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Teodor Sigaev

I'm testing how GIN scales.


Have a look at http://www.sigaev.ru/cvsweb/cvsweb.cgi/ftsbench/ - utility is 
specially developed for measuring performance of full-text solutions ( now it 
supports PgSQL( GiST, GIN ) and MySQL ). Right now I'm searching good query 
statistic for simulate load, but this data is a closed information in 
internet-wide search engines :(



? I thought GIN is superior than tsearch2. 


From your GIN proposal posted to pgsql-hackers:

The primary goal of the Gin index is a scalable full text search in
PostgreSQL


GIN itself is a just a tool for speedup searches, linguistic part is still in 
tsearch2.


It's possible to use tsearch2 without any indexes at all. GiST and GIN is  a way 
to speedup searches.


Of course, you can develop another framework for full text search and framework 
may use GIN as it wish :)





--
Teodor Sigaev   E-mail: [EMAIL PROTECTED]
   WWW: http://www.sigaev.ru/

---(end of broadcast)---
TIP 6: explain analyze is your friend


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Tatsuo Ishii
  I'm testing how GIN scales.
 
 Have a look at http://www.sigaev.ru/cvsweb/cvsweb.cgi/ftsbench/ - utility is 
 specially developed for measuring performance of full-text solutions ( now it 
 supports PgSQL( GiST, GIN ) and MySQL ). Right now I'm searching good query 
 statistic for simulate load, but this data is a closed information in 
 internet-wide search engines :(

Thanks.

 GIN itself is a just a tool for speedup searches, linguistic part is still in 
 tsearch2.
 
 It's possible to use tsearch2 without any indexes at all. GiST and GIN is  a 
 way 
 to speedup searches.
 
 Of course, you can develop another framework for full text search and 
 framework 
 may use GIN as it wish :)

Porblem with Japanese is, it's an agglutinative language and we need
to separate each word from a sentence. So, I need to modify tsearch2
anyway (I know someone from Japan is working on this).

BTW, can tsearch2 handle ~70k words in a document?
--
Tatsuo Ishii
SRA OSS, Inc. Japan

---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Teodor Sigaev

Porblem with Japanese is, it's an agglutinative language and we need
to separate each word from a sentence. So, I need to modify tsearch2
anyway (I know someone from Japan is working on this).

https://www.oss.ecl.ntt.co.jp/tsearch2j/index.html
That's it?



BTW, can tsearch2 handle ~70k words in a document?


I don't see any problem. tsvector size should not be greater than 1Mb however.

--
Teodor Sigaev   E-mail: [EMAIL PROTECTED]
   WWW: http://www.sigaev.ru/

---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Tom Lane
Tatsuo Ishii [EMAIL PROTECTED] writes:
 string_to_array() consumes too much memory. For example, to make ~70k
 array elements, string_to_array seems to eat several Gig bytes of
 memory.

I'd argue that the problem comes from enlarging the work arrays only 64
elements at a time in accumArrayResult().  Most of the rest of the code
deals with resizing arrays using a double it each time it has to grow
approach, I wonder why this is different?

regards, tom lane

---(end of broadcast)---
TIP 4: Have you searched our list archives?

   http://archives.postgresql.org


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Tatsuo Ishii
  Porblem with Japanese is, it's an agglutinative language and we need
  to separate each word from a sentence. So, I need to modify tsearch2
  anyway (I know someone from Japan is working on this).
 https://www.oss.ecl.ntt.co.jp/tsearch2j/index.html
 That's it?

Yes. However I'm going to use different word separation library from
them and will make some tweaks.

  BTW, can tsearch2 handle ~70k words in a document?
 
 I don't see any problem.

Great. I have made a little trial and it seems tsearch2 works great
with GIN.

 tsvector size should not be greater than 1Mb however.

Is this documented somewhere? Also I noticed that tsearch2 treats :
as a special character. Are there any special characters? If so where
are they documented?
--
Tatsuo Ishii
SRA OSS, Inc. Japan

---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
   subscribe-nomail command to [EMAIL PROTECTED] so that your
   message can get through to the mailing list cleanly


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Teodor Sigaev

tsvector size should not be greater than 1Mb however.


Is this documented somewhere? Also I noticed that tsearch2 treats :
as a special character. Are there any special characters? If so where
are they documented?

http://www.sai.msu.su/~megera/wiki/Tsearch_V2_in_Brief
Limitations

13.1 2048 bytes for lexems
13.2 ts_vector has limit about 1Mb. Exact value depends on
quantity of position information. If there is no any position
information, then sum of length of lexem must be less than 1Mb,
otherwise, sum of length of and pos. info.
Positional information uses 2 bytes per each
position and 2 bytes per lexem with pos info. The number of
lexems is limited by 4^32, so in practice it's unlimited.
13.3 ts_query:
Number of entries (nodes, i.e sum of lexems and operation)
is limited: internal representation is in polish notation
and position of one operand is pointed by int2, so it's
rather soft limit.
In any case, low range of limit - 32768 nodes.
Notice: ts_query doesn't designed for storing in table and
is optimized for speed, not for size.
13.4 Positional information in ts_vector:
13.4.1 Value of position may not be greater than 2^14 (16384),
   any value greater than this limit will be replaced
   by 16383.
13.4.2 Only 256 positional info per lexem.


Some useful articles
http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/docs/HOWTO-parser-tsearch2.html
http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/docs/custom-dict.html


--
Teodor Sigaev   E-mail: [EMAIL PROTECTED]
   WWW: http://www.sigaev.ru/

---(end of broadcast)---
TIP 6: explain analyze is your friend


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Teodor Sigaev

Is this documented somewhere? Also I noticed that tsearch2 treats :
as a special character. Are there any special characters? If so where
are they documented?


You can avoid confusions with special character by quoting:
# select '''wow:'''::tsvector;
 tsvector
--
 'wow:'
(1 row)

':' is separator of lexeme and its position information
--
Teodor Sigaev   E-mail: [EMAIL PROTECTED]
   WWW: http://www.sigaev.ru/

---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Teodor Sigaev

Limitations

Sorry for noise - it's mentioned in README.tsearch2
--
Teodor Sigaev   E-mail: [EMAIL PROTECTED]
   WWW: http://www.sigaev.ru/

---(end of broadcast)---
TIP 6: explain analyze is your friend


Re: [HACKERS] string_to_array eats too much memory?

2006-11-08 Thread Oleg Bartunov

On Thu, 9 Nov 2006, Tatsuo Ishii wrote:


Porblem with Japanese is, it's an agglutinative language and we need
to separate each word from a sentence. So, I need to modify tsearch2
anyway (I know someone from Japan is working on this).

https://www.oss.ecl.ntt.co.jp/tsearch2j/index.html
That's it?


Yes. However I'm going to use different word separation library from
them and will make some tweaks.


BTW, can tsearch2 handle ~70k words in a document?


I don't see any problem.


Great. I have made a little trial and it seems tsearch2 works great
with GIN.


Tatsuo, ideallly, I'd like to have tsearch2 untouched, but with 
japanese parser(s) and dictionaries (program) available. This is how

tsearch2 was designed. If something prevent to do so, we should improve
tsearch2. This is important now, since we're going to build tsearch2 into
PostgreSQL core for 8.3.



Regards,
Oleg
_
Oleg Bartunov, Research Scientist, Head of AstroNet (www.astronet.ru),
Sternberg Astronomical Institute, Moscow University, Russia
Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
phone: +007(495)939-16-83, +007(495)939-23-83

---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

  http://www.postgresql.org/docs/faq


[HACKERS] string_to_array eats too much memory?

2006-11-07 Thread Tatsuo Ishii
Hi,

I'm playing with GIN to make a full text search system. GIN comes with
built-in TEXT[] support and I use string_to_array() to make a
TEXT[]. Problem is, if there's large number of array elemets,
string_to_array() consumes too much memory. For example, to make ~70k
array elements, string_to_array seems to eat several Gig bytes of
memory. ~70k array elements means there are same number of words in a
document which is not too big in a large text IMO.

Comments?
--
Tatsuo Ishii
SRA OSS, Inc. Japan

---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
   subscribe-nomail command to [EMAIL PROTECTED] so that your
   message can get through to the mailing list cleanly