mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Add test
This commit is contained in:
parent
47f94120da
commit
353ffacca3
@ -13,6 +13,7 @@ COPY s3downloader /s3downloader
|
||||
|
||||
ENV S3_URL="https://clickhouse-datasets.s3.yandex.net"
|
||||
ENV DATASETS="hits visits"
|
||||
ENV EXPORT_S3_STORAGE_POLICIES=1
|
||||
|
||||
# Download Minio-related binaries
|
||||
RUN arch=${TARGETARCH:-amd64} \
|
||||
|
@ -78,7 +78,6 @@ if [[ -n "$USE_DATABASE_REPLICATED" ]] && [[ "$USE_DATABASE_REPLICATED" -eq 1 ]]
|
||||
|
||||
clickhouse-client --query "CREATE TABLE test.hits AS datasets.hits_v1"
|
||||
clickhouse-client --query "CREATE TABLE test.visits AS datasets.visits_v1"
|
||||
clickhouse-client --query "CREATE TABLE test.hits_s3 (WatchID UInt64, JavaEnable UInt8, Title String, GoodEvent Int16, EventTime DateTime, EventDate Date, CounterID UInt32, ClientIP UInt32, ClientIP6 FixedString(16), RegionID UInt32, UserID UInt64, CounterClass Int8, OS UInt8, UserAgent UInt8, URL String, Referer String, URLDomain String, RefererDomain String, Refresh UInt8, IsRobot UInt8, RefererCategories Array(UInt16), URLCategories Array(UInt16), URLRegions Array(UInt32), RefererRegions Array(UInt32), ResolutionWidth UInt16, ResolutionHeight UInt16, ResolutionDepth UInt8, FlashMajor UInt8, FlashMinor UInt8, FlashMinor2 String, NetMajor UInt8, NetMinor UInt8, UserAgentMajor UInt16, UserAgentMinor FixedString(2), CookieEnable UInt8, JavascriptEnable UInt8, IsMobile UInt8, MobilePhone UInt8, MobilePhoneModel String, Params String, IPNetworkID UInt32, TraficSourceID Int8, SearchEngineID UInt16, SearchPhrase String, AdvEngineID UInt8, IsArtifical UInt8, WindowClientWidth UInt16, WindowClientHeight UInt16, ClientTimeZone Int16, ClientEventTime DateTime, SilverlightVersion1 UInt8, SilverlightVersion2 UInt8, SilverlightVersion3 UInt32, SilverlightVersion4 UInt16, PageCharset String, CodeVersion UInt32, IsLink UInt8, IsDownload UInt8, IsNotBounce UInt8, FUniqID UInt64, HID UInt32, IsOldCounter UInt8, IsEvent UInt8, IsParameter UInt8, DontCountHits UInt8, WithHash UInt8, HitColor FixedString(1), UTCEventTime DateTime, Age UInt8, Sex UInt8, Income UInt8, Interests UInt16, Robotness UInt8, GeneralInterests Array(UInt16), RemoteIP UInt32, RemoteIP6 FixedString(16), WindowName Int32, OpenerName Int32, HistoryLength Int16, BrowserLanguage FixedString(2), BrowserCountry FixedString(2), SocialNetwork String, SocialAction String, HTTPError UInt16, SendTiming Int32, DNSTiming Int32, ConnectTiming Int32, ResponseStartTiming Int32, ResponseEndTiming Int32, FetchTiming Int32, RedirectTiming Int32, DOMInteractiveTiming Int32, DOMContentLoadedTiming Int32, DOMCompleteTiming Int32, LoadEventStartTiming Int32, LoadEventEndTiming Int32, NSToDOMContentLoadedTiming Int32, FirstPaintTiming Int32, RedirectCount Int8, SocialSourceNetworkID UInt8, SocialSourcePage String, ParamPrice Int64, ParamOrderID String, ParamCurrency FixedString(3), ParamCurrencyID UInt16, GoalsReached Array(UInt32), OpenstatServiceName String, OpenstatCampaignID String, OpenstatAdID String, OpenstatSourceID String, UTMSource String, UTMMedium String, UTMCampaign String, UTMContent String, UTMTerm String, FromTag String, HasGCLID UInt8, RefererHash UInt64, URLHash UInt64, CLID UInt32, YCLID UInt64, ShareService String, ShareURL String, ShareTitle String, ParsedParams Nested(Key1 String, Key2 String, Key3 String, Key4 String, Key5 String, ValueDouble Float64), IslandID FixedString(16), RequestNum UInt32, RequestTry UInt8) ENGINE = MergeTree() PARTITION BY toYYYYMM(EventDate) ORDER BY (CounterID, EventDate, intHash32(UserID)) SAMPLE BY intHash32(UserID) SETTINGS index_granularity = 8192, storage_policy='s3'"
|
||||
|
||||
clickhouse-client --query "INSERT INTO test.hits SELECT * FROM datasets.hits_v1"
|
||||
clickhouse-client --query "INSERT INTO test.visits SELECT * FROM datasets.visits_v1"
|
||||
@ -93,6 +92,7 @@ else
|
||||
clickhouse-client --query "SHOW TABLES FROM test"
|
||||
clickhouse-client --query "RENAME TABLE datasets.hits_v1 TO test.hits"
|
||||
clickhouse-client --query "RENAME TABLE datasets.visits_v1 TO test.visits"
|
||||
clickhouse-client --query "CREATE TABLE test.hits_s3 (WatchID UInt64, JavaEnable UInt8, Title String, GoodEvent Int16, EventTime DateTime, EventDate Date, CounterID UInt32, ClientIP UInt32, ClientIP6 FixedString(16), RegionID UInt32, UserID UInt64, CounterClass Int8, OS UInt8, UserAgent UInt8, URL String, Referer String, URLDomain String, RefererDomain String, Refresh UInt8, IsRobot UInt8, RefererCategories Array(UInt16), URLCategories Array(UInt16), URLRegions Array(UInt32), RefererRegions Array(UInt32), ResolutionWidth UInt16, ResolutionHeight UInt16, ResolutionDepth UInt8, FlashMajor UInt8, FlashMinor UInt8, FlashMinor2 String, NetMajor UInt8, NetMinor UInt8, UserAgentMajor UInt16, UserAgentMinor FixedString(2), CookieEnable UInt8, JavascriptEnable UInt8, IsMobile UInt8, MobilePhone UInt8, MobilePhoneModel String, Params String, IPNetworkID UInt32, TraficSourceID Int8, SearchEngineID UInt16, SearchPhrase String, AdvEngineID UInt8, IsArtifical UInt8, WindowClientWidth UInt16, WindowClientHeight UInt16, ClientTimeZone Int16, ClientEventTime DateTime, SilverlightVersion1 UInt8, SilverlightVersion2 UInt8, SilverlightVersion3 UInt32, SilverlightVersion4 UInt16, PageCharset String, CodeVersion UInt32, IsLink UInt8, IsDownload UInt8, IsNotBounce UInt8, FUniqID UInt64, HID UInt32, IsOldCounter UInt8, IsEvent UInt8, IsParameter UInt8, DontCountHits UInt8, WithHash UInt8, HitColor FixedString(1), UTCEventTime DateTime, Age UInt8, Sex UInt8, Income UInt8, Interests UInt16, Robotness UInt8, GeneralInterests Array(UInt16), RemoteIP UInt32, RemoteIP6 FixedString(16), WindowName Int32, OpenerName Int32, HistoryLength Int16, BrowserLanguage FixedString(2), BrowserCountry FixedString(2), SocialNetwork String, SocialAction String, HTTPError UInt16, SendTiming Int32, DNSTiming Int32, ConnectTiming Int32, ResponseStartTiming Int32, ResponseEndTiming Int32, FetchTiming Int32, RedirectTiming Int32, DOMInteractiveTiming Int32, DOMContentLoadedTiming Int32, DOMCompleteTiming Int32, LoadEventStartTiming Int32, LoadEventEndTiming Int32, NSToDOMContentLoadedTiming Int32, FirstPaintTiming Int32, RedirectCount Int8, SocialSourceNetworkID UInt8, SocialSourcePage String, ParamPrice Int64, ParamOrderID String, ParamCurrency FixedString(3), ParamCurrencyID UInt16, GoalsReached Array(UInt32), OpenstatServiceName String, OpenstatCampaignID String, OpenstatAdID String, OpenstatSourceID String, UTMSource String, UTMMedium String, UTMCampaign String, UTMContent String, UTMTerm String, FromTag String, HasGCLID UInt8, RefererHash UInt64, URLHash UInt64, CLID UInt32, YCLID UInt64, ShareService String, ShareURL String, ShareTitle String, ParsedParams Nested(Key1 String, Key2 String, Key3 String, Key4 String, Key5 String, ValueDouble Float64), IslandID FixedString(16), RequestNum UInt32, RequestTry UInt8) ENGINE = MergeTree() PARTITION BY toYYYYMM(EventDate) ORDER BY (CounterID, EventDate, intHash32(UserID)) SAMPLE BY intHash32(UserID) SETTINGS index_granularity = 8192, storage_policy='s3_cache'"
|
||||
fi
|
||||
|
||||
clickhouse-client --query "SHOW TABLES FROM test"
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
# TODO: Make this file shared with stateful tests
|
||||
# TODO: Make this file shared with stateless tests
|
||||
#
|
||||
# Usage for local run:
|
||||
#
|
||||
@ -57,3 +57,10 @@ for FILE in $(ls "${MINIO_DATA_PATH}"); do
|
||||
echo "$FILE";
|
||||
./mc cp "${MINIO_DATA_PATH}"/"$FILE" clickminio/test/"$FILE";
|
||||
done
|
||||
|
||||
mkdir -p ~/.aws
|
||||
cat <<EOT >> ~/.aws/credentials
|
||||
[default]
|
||||
aws_access_key_id=clickhouse
|
||||
aws_secret_access_key=clickhouse
|
||||
EOT
|
||||
|
@ -71,7 +71,7 @@ SeekableReadBufferPtr CachedReadBufferFromRemoteFS::getRemoteFSReadBuffer([[mayb
|
||||
* Each downloader is elected to download at most buffer_size bytes and then any other can
|
||||
* continue. The one who continues download should reuse download buffer.
|
||||
*
|
||||
* Also implementation (s3, hdfs, web) buffer might be passed through file segments.
|
||||
* TODO: Also implementation (s3, hdfs, web) buffer might be passed through file segments.
|
||||
* E.g. consider for query1 and query2 we need intersecting ranges like this:
|
||||
*
|
||||
* [___________] -- read_range_1 for query1
|
||||
|
@ -1,12 +1,13 @@
|
||||
#include <Disks/RemoteDisksCommon.h>
|
||||
#include <Common/getRandomASCIIString.h>
|
||||
#include <Common/FileCache_fwd.h>
|
||||
#include <Common/FileCacheFactory.h>
|
||||
|
||||
namespace DB
|
||||
{
|
||||
|
||||
namespace ErrorCodes
|
||||
{
|
||||
extern const int BAD_ARGUMENTS;
|
||||
{extern const int BAD_ARGUMENTS;
|
||||
}
|
||||
|
||||
std::shared_ptr<DiskCacheWrapper> wrapWithCache(
|
||||
@ -26,6 +27,14 @@ std::shared_ptr<DiskCacheWrapper> wrapWithCache(
|
||||
return std::make_shared<DiskCacheWrapper>(disk, cache_disk, cache_file_predicate);
|
||||
}
|
||||
|
||||
String getDiskMetadataPath(
|
||||
const String & name,
|
||||
const Poco::Util::AbstractConfiguration & config,
|
||||
const String & config_prefix,
|
||||
ContextPtr context)
|
||||
{
|
||||
return config.getString(config_prefix + ".metadata_path", context->getPath() + "disks/" + name + "/");
|
||||
}
|
||||
|
||||
std::pair<String, DiskPtr> prepareForLocalMetadata(
|
||||
const String & name,
|
||||
@ -34,10 +43,36 @@ std::pair<String, DiskPtr> prepareForLocalMetadata(
|
||||
ContextPtr context)
|
||||
{
|
||||
/// where the metadata files are stored locally
|
||||
auto metadata_path = config.getString(config_prefix + ".metadata_path", context->getPath() + "disks/" + name + "/");
|
||||
auto metadata_path = getDiskMetadataPath(name, config, config_prefix, context);
|
||||
fs::create_directories(metadata_path);
|
||||
auto metadata_disk = std::make_shared<DiskLocal>(name + "-metadata", metadata_path, 0);
|
||||
return std::make_pair(metadata_path, metadata_disk);
|
||||
}
|
||||
|
||||
|
||||
FileCachePtr getCachePtrForDisk(
|
||||
const String & name,
|
||||
const Poco::Util::AbstractConfiguration & config,
|
||||
const String & config_prefix,
|
||||
ContextPtr context)
|
||||
{
|
||||
bool data_cache_enabled = config.getBool(config_prefix + ".data_cache_enabled", false);
|
||||
if (!data_cache_enabled)
|
||||
return nullptr;
|
||||
|
||||
auto cache_base_path = config.getString(config_prefix + ".data_cache_path", fs::path(context->getPath()) / "disks" / name / "data_cache/");
|
||||
if (!fs::exists(cache_base_path))
|
||||
fs::create_directories(cache_base_path);
|
||||
|
||||
LOG_INFO(&Poco::Logger::get("Disk(" + name + ")"), "Disk registered with cache path: {}", cache_base_path);
|
||||
|
||||
auto metadata_path = getDiskMetadataPath(name, config, config_prefix, context);
|
||||
if (metadata_path == cache_base_path)
|
||||
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Metadata path and cache base path must be different: {}", metadata_path);
|
||||
|
||||
size_t max_cache_size = config.getUInt64(config_prefix + ".data_cache_max_size", 1024*1024*1024);
|
||||
size_t max_cache_elements = config.getUInt64(config_prefix + ".data_cache_max_elements", 1024*1024);
|
||||
|
||||
return FileCacheFactory::instance().getOrCreate(cache_base_path, max_cache_size, max_cache_elements);
|
||||
}
|
||||
}
|
||||
|
@ -21,4 +21,10 @@ std::pair<String, DiskPtr> prepareForLocalMetadata(
|
||||
const String & config_prefix,
|
||||
ContextPtr context);
|
||||
|
||||
FileCachePtr getCachePtrForDisk(
|
||||
const String & name,
|
||||
const Poco::Util::AbstractConfiguration & config,
|
||||
const String & config_prefix,
|
||||
ContextPtr context);
|
||||
|
||||
}
|
||||
|
@ -186,24 +186,7 @@ void registerDiskS3(DiskFactory & factory)
|
||||
|
||||
auto [metadata_path, metadata_disk] = prepareForLocalMetadata(name, config, config_prefix, context);
|
||||
|
||||
FileCachePtr cache;
|
||||
bool data_cache_enabled = config.getBool(config_prefix + ".data_cache_enabled", false);
|
||||
if (data_cache_enabled)
|
||||
{
|
||||
auto cache_base_path = config.getString(config_prefix + ".data_cache_path", fs::path(context->getPath()) / "disks" / name / "data_cache/");
|
||||
if (!fs::exists(cache_base_path))
|
||||
fs::create_directories(cache_base_path);
|
||||
|
||||
LOG_INFO(&Poco::Logger::get("Disks3(" + name + ")"), "Disk registered with cache path: {}", cache_base_path);
|
||||
|
||||
if (metadata_path == cache_base_path)
|
||||
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Metadata path and cache base path must be different: {}", metadata_path);
|
||||
|
||||
size_t max_cache_size = config.getUInt64(config_prefix + ".data_cache_max_size", 1024*1024*1024);
|
||||
size_t max_cache_elements = config.getUInt64(config_prefix + ".data_cache_max_elements", 1024*1024);
|
||||
|
||||
cache = FileCacheFactory::instance().getOrCreate(cache_base_path, max_cache_size, max_cache_elements);
|
||||
}
|
||||
FileCachePtr cache = getCachePtrForDisk(name, config, config_prefix, context);
|
||||
|
||||
std::shared_ptr<IDisk> s3disk = std::make_shared<DiskS3>(
|
||||
name,
|
||||
|
@ -3,16 +3,12 @@
|
||||
<disks>
|
||||
<s3disk>
|
||||
<type>s3</type>
|
||||
<endpoint>http://localhost:11111/test/stateful/</endpoint>
|
||||
<access_key_id>test</access_key_id>
|
||||
<secret_access_key>testtest</secret_access_key>
|
||||
<endpoint>http://localhost:11111/test/00170_test/</endpoint>
|
||||
<access_key_id>clickhouse</access_key_id>
|
||||
<secret_access_key>clickhouse</secret_access_key>
|
||||
<data_cache_enabled>1</data_cache_enabled>
|
||||
<data_cache_max_size>22548578304</data_cache_max_size>
|
||||
</s3disk>
|
||||
<hdd>
|
||||
<type>local</type>
|
||||
<path>/home/ubuntu/CH-server/</path>
|
||||
</hdd>
|
||||
</disks>
|
||||
<policies>
|
||||
<s3>
|
||||
|
@ -111,4 +111,8 @@ if [[ -n "$USE_S3_STORAGE_FOR_MERGE_TREE" ]] && [[ "$USE_S3_STORAGE_FOR_MERGE_TR
|
||||
ln -sf $SRC_PATH/config.d/s3_storage_policy_by_default.xml $DEST_SERVER_PATH/config.d/
|
||||
fi
|
||||
|
||||
if [[ -n "$EXPORT_S3_STORAGE_POLICIES" ]]; then
|
||||
ln -sf $SRC_PATH/config.d/storage_conf.xml $DEST_SERVER_PATH/config.d/
|
||||
fi
|
||||
|
||||
ln -sf $SRC_PATH/client_config.xml $DEST_CLIENT_PATH/config.xml
|
||||
|
@ -1 +1,275 @@
|
||||
0
|
||||
8873898
|
||||
30641
|
||||
329039 8873898 1400.8565027454677
|
||||
15358948234638402412
|
||||
120665
|
||||
132591
|
||||
2014-03-17 2014-03-23
|
||||
3 22948
|
||||
35 2751
|
||||
30 1832
|
||||
16 1019
|
||||
52 454
|
||||
50 353
|
||||
55 281
|
||||
48 224
|
||||
2 187
|
||||
32 141
|
||||
40 91
|
||||
58 83
|
||||
41 76
|
||||
51 74
|
||||
42 72
|
||||
61 12
|
||||
4 10
|
||||
24 9
|
||||
49 7
|
||||
62 7
|
||||
22 3
|
||||
18 3
|
||||
10 3
|
||||
12 1
|
||||
196 9275
|
||||
8363 4624
|
||||
15887 4585
|
||||
241 4488
|
||||
207 3596
|
||||
3 3319
|
||||
12504 1594
|
||||
183 1592
|
||||
57 1251
|
||||
225 1177
|
||||
196 32570 1311992 1437.5239170665675 9275
|
||||
3 11425 428577 1424.2968801405582 3319
|
||||
241 8291 320659 1149.9956152797831 4488
|
||||
207 7360 285615 1264.5680093832607 3596
|
||||
15887 27514 197463 1392.8657064867848 4585
|
||||
8363 26522 197154 1361.9469247390364 4624
|
||||
183 13054 186914 1470.3840054784553 1592
|
||||
225 1817 164048 1404.8909831268898 1177
|
||||
40 1883 107154 1407.6735912798401 808
|
||||
57 2146 99424 1200.338721033151 1251
|
||||
S820_ROW 7616
|
||||
iPhone 2 6111
|
||||
LG Optimus 4134
|
||||
Samsung Galaxy 813
|
||||
iPad HD 7 604
|
||||
Sams 558
|
||||
Samsung Galaxy Note 501
|
||||
iPad 2 434
|
||||
iPhone S720 393
|
||||
iPad 10 FHD 306
|
||||
1 S820_ROW 7613
|
||||
7 iPhone 2 5993
|
||||
1 LG Optimus 4098
|
||||
5 Samsung Galaxy Note 499
|
||||
5 Sams 346
|
||||
5 Samsung Galaxy 273
|
||||
7 iPad HD 7 240
|
||||
5 iPad 213
|
||||
4 Sams 210
|
||||
7 Samsung Galaxy 189
|
||||
ст 12.168.0.1 3567
|
||||
orton 2402
|
||||
игры лица и гым чан дизайн 2166
|
||||
imgsrc 1848
|
||||
брызговик 1659
|
||||
индийский афтозный 1549
|
||||
ооооотводка и 1480
|
||||
выступная мужчин 1247
|
||||
юность 1112
|
||||
пелевиз дсп в москвы о рыжая 1091
|
||||
orton 786
|
||||
брызговик 479
|
||||
вольная 320
|
||||
imgsrc 188
|
||||
скачать 181
|
||||
дом и лягушки 174
|
||||
гдз подруги 173
|
||||
велик 162
|
||||
смотреть онлайн 159
|
||||
смотреть 141
|
||||
3 ст 12.168.0.1 3490
|
||||
3 игры лица и гым чан дизайн 2166
|
||||
3 orton 1599
|
||||
3 индийский афтозный 1549
|
||||
3 imgsrc 1530
|
||||
3 ооооотводка и 1442
|
||||
3 выступная мужчин 1247
|
||||
3 юность 1112
|
||||
3 пелевиз дсп в москвы о рыжая 1091
|
||||
3 регламу водам для 1064
|
||||
1205491256153864188 31519
|
||||
3228040076666004453 20688
|
||||
2543118835429830843 16329
|
||||
1961021224905272484 13484
|
||||
4322253409885123546 11186
|
||||
2034549784946942048 10970
|
||||
397859646441652491 8229
|
||||
8032089779962875762 8149
|
||||
1839265440135330496 7816
|
||||
5548175707459682622 7806
|
||||
1205491256153864188 31518
|
||||
3228040076666004453 20688
|
||||
2543118835429830843 16328
|
||||
1961021224905272484 13442
|
||||
4322253409885123546 11168
|
||||
2034549784946942048 10959
|
||||
397859646441652491 8226
|
||||
8032089779962875762 8113
|
||||
1839265440135330496 7816
|
||||
2654454543561668019 7753
|
||||
4472367317925493593 672
|
||||
1694911248996517337 68
|
||||
1193076512096907670 3
|
||||
507908759171479602 1
|
||||
2403894912371179418 полимеры пропилу на работа в про 3
|
||||
3594692252443350400 233
|
||||
9761989962600369219 смотреть онлайн 1
|
||||
2529337358193349616 ниссан центри берегистрата где у новости молодиета мистрация 2
|
||||
812625484716241444 где кухня диете 5
|
||||
1942202374925212766 вечерина коставка женщину тойота в хрущевской фото санкции подолей 3
|
||||
2034549784946942048 46 720
|
||||
2034549784946942048 14 698
|
||||
1839265440135330496 54 664
|
||||
1205491256153864188 5 659
|
||||
4322253409885123546 40 654
|
||||
2034549784946942048 45 597
|
||||
1205491256153864188 7 593
|
||||
1205491256153864188 50 590
|
||||
1205491256153864188 49 579
|
||||
1205491256153864188 57 579
|
||||
2348
|
||||
yıldız sex post.ru/indir 615 http://korer.ru/categories.ru%2Fevliliday.az/sob.ru/ok_ads_mg.html?pid=30&metrika.com.tr&callback_url=http://acunn.com.tr/oauth&resumeronl.ru/67/photo/46642845.shtml/23000008310 5
|
||||
бк зенко десятков на семьи рисующие http://korer.ru/Session/teams/82345/?i=783&rpt=storiya/701020&lr=1082-suprofession_id=19067250/488/819657/n4p/1472723,0.00002523-lev-new.mcko.ru/toyota_car=0&available_key=0&extrase=LAW;dst=0&metrikaz_11017-fw-13635_36.php?idPoblast/arent[0]=300&targetimg%2FYusecec7dca011917 годи смотреть онлайн&clid=1&hit=7207][32327-серьги беременная фото 4
|
||||
проективирующее цветы фото животными goal://delive/812metrika.com/kizi-bulochkomna 4
|
||||
юность http://korer.ru/categories.rambler.ru/myrapg8011/vse35.ru/neo2/#inbox/?lang=ruukaz-Turlandisi-P166;labeli/svobody_type=0&sessit.com/webhp?espv=1&img_url=http:%2F%2Fweb%2Fimg1.live.html?stype%3D88072&__utmb/2048450-metrika 4
|
||||
комства инфициальные шпионки http://tv.yandsearch-tattivatehometrikat/kvarticle/209000000d4fbcdn 3
|
||||
скорости стариуполе http://korer.ru/categories.ru%2Fekonomy.html#/battle-ru9.html&language=43&p=78&metrikansii/houses-s-Dneprice_doma_dachi?p=2&text=моя страты фенечестве бесплатно с айфолл авизентарник 3
|
||||
рабочий счет http://metrika-mototehnologodam 2
|
||||
гостях у бесплатно 2014 днем рождения http://korer.ru/categories.ru%2Fekonomik-etti_v250000284.1406-echo.msk.vsauna%2FBalan-kurtka-onuruna-metrika.ru/sign%3D286737&hid=91395134/n4p/24715e29fa1a1C8AbsrUXI 2
|
||||
секс в мартфон альбом техника http://korer.ru/categories.ru%2Fevent=&durMin=&search=1&metrika.ru/yandex.ru/inworldofwarplaycasti_i_dach_greedit/video/tarifinis-Access_to_poshu-many_id%3D0%26adurlugu 2
|
||||
лучшие http://avito.ru/yandex.ru/commetrikan-stat/simpleSortivnye 2
|
||||
выступная мужчин http://korer.ru/categories.ru%2Fekonomics.ru/00014947316913924944&lr=14&text=м видео всё типа Яндекс: нашлось 184 тыс изображений програница 27 тыс. ответов в России - 1245 1
|
||||
короле можно на колёсах фото http://korer.ru/categories.ru%2Fevlilidad.rt.com/forums=1&referrer=http://hurpass.com.tr/video%2Fs003.html?pid=79152071984760175&view/?group-globaltininfo=ww-1349-wh-6306.adriveryi.html?id=19554ef8-e2636253866187787925&cat=0&orderStages Яндекс.Картинках, поиск на AVITO.ru • Знакомства вакансии на дом электриса 710 1
|
||||
вольная http://wow-girls.ru/?areaId 384 тыс изображений найдено в Яндекс: нашлось 52 тыс. ответов назвалился СТР. Да полагает пригрокатовская 7Я Семеров, брюки, Эдас 696 310
|
||||
как локова фото девочек бесплатно http://korer.ru/categories.ru%2Fevlilidad.html?account/AZ2uCqMLM8IHDH7Q12XtdvuSb_3_7_640x400-fh-448-pd-1&rpt=simage&uinfo=ww-1263&PageUrl%3Dhttp://moeskk.barcelog&groups[]%3D2%26ts%3Drjt&page=25&wp=®ion]=myaccount/VFhBVm5mTWk1Y3RwZ19nYkxXTURkZ0Fud3 Яндекс: нашем качествует о тебя не следников PRAJNA Cerator.org.com / Shopogody - Read izle, Diva.BY 668 1
|
||||
хентация люблю текста для болочными средстве http://korer.ru/categories.ru%2Fekonomika%2F&lan=ru&lr=10366&subs/year[2]=&engi-s9999%26pz%3D132113.ru/program/417541.html#/battle/futbol/1040-fh-448_13859431558266-bd8f265dc40128&transmiss-majka.ru/bushki/dachnye_svoimi-coed-whist_name/frm_index.ru/Southenta.ru/loginza&token=bele/prografik-pornk.org/ru/analings={\'pluginsy_za_pochishkola-v-krymskoy Яндекс.Новости в Санкт-Петербурге: 228-135 тыс. ответов цифр трудников на Весная 572 1
|
||||
ст 12.168.0.1 http://korer.ru/categories.ru%2Fekonomy.html?pid=367740308&rpt=simages/17491&s=-1&okdpWithoutneva.ru/count=name=logovory-politika/zina_2013&noreask=showthread/2014.html?region=commedia.org/avtomobilizator.com.tr/oauth.aspx&refererinburg/avtomobili_s_probegom/neo2/ Забайкам : Погода в Брянск. Всіх специальной коммуляже — Яндекс.Картинках | Форд на AVITO.ru — странина» - народовый секс игры хэппизделе 546 54
|
||||
автобусы для водольское молочная систем http://korer.ru/categories.ru%2Fef945a0fa3d400eq1aRQWI_0CauKDee4EcGL2Z90G9w2G9pYKdxptGxM4KXQtIDx7JyxWXEdPcAkwXkR5fAZR Яндекс.Новоришь всё о купить модели Виннис, ЧП. Соболєв і 457 1
|
||||
orton http://hurpass.com/iframe/frm_index.ru/mb118989228 Заказ - Все сердце с на радикальские обо всегодные — Яндекс: нашлось 439 221
|
||||
фгбу в кубатов в адлежниках фотоплюсы и на пепа смотреть http://korer.ru/categories.ru/?vkb Продажа плании онлайн бесплатно в Яндекс.Маркетинг - новости менеджера, 61 438 1
|
||||
как локова фото мененко в http://korer.ru/categories.ru%2Fevlilidad.html?account/AZ2uCqMLM8IHDH7Q12XtdvuSb_3_102243500000052397259393952236/?frommail.yandsearch&events/?com=apps/?tid=9582&lr=3538_cfe0f8bb1d51b3671&gm=1&lang=ru&lr=49&is_vative=0&sessular-seyfurs.ru/area Яндекс: нашем качестве: почалась 396 Hp) 5-dr 200000 для зимние восписок тили 395 1
|
||||
5993389893229988961 1 Звездах АСНАЯ ДОСТОЯНИЕ. ЗАО МОЛДОВЫХ И ТРАНСКИЕ ПОРНО ФИЛЬМЫ ОНЛАЙН БЕРЕГ-2: 3 месячного радицина. | объявленны России, фото 1 2014-03-17 00:04:09 2014-03-17 18530000 1319295893 <09><>:<3A>[<5B>Uc<55><63>m<EFBFBD><6D><EFBFBD> 207 4185091951519952809 0 3 122 http://yandsearch;search[period=3088736598274798&text=01&hit=10&metrika/1059&sort=2010_1486-pd-1&rpt=simages.theplanet.com.tr/gatelektrycomics.su/proty-nyu-2014-03-23&pos=81&uinfo/replication=search?source=wiz&uinfo=ww-1583-wh-6630e58&domain http://oryol mamodamir yandex 0 0 [5,4,15,29,56,643,9251,13770] [15,102,15216] [167,868] [155,644] 1297 555 57 8 0 0. 0 0 13 8w 1 1 0 0 1670446 1 0 0 0 760 654 209 2014-03-17 20:37:57 0 0 0 0 utf-8 510 0 0 0 5125205847126318744 1024047581 0 0 0 0 0 E 2014-03-17 07:52:57 39 0 3 0 0 [] 1325618909 <09><><17>_Y<5F><59><EFBFBD><>5Ӵ. 26349 -1 1 nD <09><> 0 -1 0 214 74 101 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 <07> 0 [] 0 2260718336711394775 7919553308786938080 0 0 [] [] [] [] [] [] <09><><EFBFBD>+<2B><><EFBFBD><19><04><>bKQ9 50 0
|
||||
8172350152864609731 1 1 2014-03-17 00:04:35 2014-03-17 18530000 1319295893 <09><>:<3A>[<5B>Uc<55><63>m<EFBFBD><6D><EFBFBD> 207 4185091951519952809 0 3 122 http://yandsearch;search[period=3088736598274798&text=01&hit=10&metrika/1059&sort=2010_1486-pd-1&rpt=simages.theplanet.com.tr/gatelektrycomics.su/proty-nyu-2014-03-23&pos=81&uinfo/replication=search?source=wiz&uinfo=ww-1583-wh-6630e58&domain mamodamir 0 0 [] [15,102,15216] [167,868] [] 1297 555 57 8 0 0. 0 0 13 8w 1 1 0 0 1670446 0 0 0 1 760 654 209 2014-03-17 20:38:20 0 0 0 0 utf-8 510 0 0 1 5125205847126318744 1024047581 0 0 0 1 0 E 2014-03-17 07:53:22 39 0 3 0 0 [] 1325618909 <09><><17>_Y<5F><59><EFBFBD><>5Ӵ. 26349 -1 1 nD <09><> 0 3137 -1 -1 -1 -1 -1 -1 11064 1329 14998 13451 3 16275 -1 -1 0 0 <07> 0 [] 0 15284527577228392792 7919553308786938080 0 0 [] [] [] [] [] [] <09><><EFBFBD>+<2B><><EFBFBD><19><04><>bKQ9 46 1
|
||||
5858326049368825183 1 1 2014-03-17 00:10:11 2014-03-17 732797 2029967930 <09><>:<3A>[<5B>Uc<55><63>m<EFBFBD><6D><EFBFBD> 207 466362492211799417 0 3 2 http://brandex.ru/post2734eac61b164d14f9e609fe9f&web=1&metrikatyabrowser.yandex myvi.ruvr.ru 0 0 [] [4,333,3912,14512,12818] [18,868] [] 1009 1010 57 10 2 0.77 0 0 9 p8 1 1 0 0 162234 0 0 0 1 712 272 117 2014-03-17 18:33:46 5 0 38337 0 utf-8 510 0 0 1 0 658846196 0 0 0 1 0 E 2014-03-17 02:35:28 0 0 0 0 0 [] 3185145845 <09><><17>_Y<5F><59><EFBFBD><>5Ӵ. 53191 -1 1 nD <09><> 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 <07> 0 [] 0 15284527577228392792 4184491860344927746 14662 0 [] [] [] [] [] [] <09><><EFBFBD>+<2B><><EFBFBD><19><04><>bKQ9 2 1
|
||||
8499574074841016179 1 Late porn Mobile IPad, Carretty Results | E-FINANCE.COM | İndirimlere kadrovit Regends BV 2008 года. Каталог 1 2014-03-17 00:11:12 2014-03-17 732797 2029967930 <09><>:<3A>[<5B>Uc<55><63>m<EFBFBD><6D><EFBFBD> 207 466362492211799417 0 3 2 http://brandex.ru/post2734eac61b164d14f9e609fe9f&web=1&metrikatyabrowser.yandex myvi.ruvr.ru 0 0 [] [4,333,3912,14512,12818] [18,868] [] 1009 1010 57 10 2 0.77 0 0 9 p8 1 1 0 0 {"Превьюшки":{"Правая 162234 0 0 0 0 712 272 117 2014-03-17 18:33:36 5 0 38337 0 utf-8 510 0 0 0 0 658846196 0 0 0 0 0 E 2014-03-17 02:36:17 0 0 0 0 0 [] 3185145845 <09><><17>_Y<5F><59><EFBFBD><>5Ӵ. 53191 -1 1 nD <09><> 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 <07> 0 [] 0 15284527577228392792 4184491860344927746 14662 0 ['css_link_href'] [''] [''] [''] [''] [2.790732430724154e-303] <09><><EFBFBD>+<2B><><EFBFBD><19><04><>bKQ9 1 0
|
||||
5942122913613741193 1 Лотерка по будет в шымкевичья по штор: как плеер-Новости на бедра Loft 1 2014-03-17 00:17:00 2014-03-17 241185 1464015657 <09><>:<3A>[<5B>Uc<55><63>m<EFBFBD><6D><EFBFBD> 189 1904301485392206376 0 3 4 http://yandex.ru/used/toyota_ya_teleiy_esli-metrikansii http://yandex.ru/viewtf=☠&q yandex kelebekgaleri 0 0 [1194,3302,4132,10886,10814,16137,15261,11306,13770] [1864,3666,4504,15216,8236,10157,15095,16149,11161] [159,348] [211,267] 1234 573 29 8 0 0. 0 0 44 s<> 1 1 0 0 {"mark":"played till end":"2010 3099337 -1 0 0 0 1620 784 296 2014-03-17 08:13:26 0 0 0 0 utf-8 510 0 0 0 4728928744940746940 528703622 0 0 0 0 1 5 2014-03-17 17:22:58 55 1 3 13536 0 [6,76,81,119,312,272,10,3,7,42,260,5,1] 1271954925 <09><><17>_Y<5F><59><EFBFBD><>5Ӵ. 7347 -1 2 nD <09><> 0 -1 0 0 446 875 0 0 -1 -1 -1 -1 -1 -1 552 -1 0 0 <07> 0 [] 0 6057681377700770053 9402930481005783152 0 0 ['Экспери'] [''] [''] [''] [''] [5.4973161370639525e-303] <09><><EFBFBD>+<2B><><EFBFBD><19><04><>bKQ9 15 0
|
||||
4962791222038865443 0 1 2014-03-17 00:17:41 2014-03-17 4237479 105191202 <09><>:<3A>[<5B>Uc<55><63>m<EFBFBD><6D><EFBFBD> 227 2116238124798769512 0 56 4 http://ball/news.rambler.ru/yandex.ru/public/?hash=DdmC3dd0db235bbfdabfba2ee74d86a3b3btJTVEPSZwcmluYjhRU3NnRHdFA3WEFpV2NvWXl3a2U4WF93$kJLbER1dW1POW0%3D&p.relax.by/sotmark_2077a18542#photos?albums/start=0&ni=1&wr=0&back_url=http://bn.ru/pensiste-strict=3&metrikansii/internet.com/kaya_obuv_aksesuary?p=1&wr=0&greece/9363.1395214ca026fe4&uuinfo=ww-1349-wh-600-fw-16634;label-figli-partner=814493/r=оооофильмы содерилли Кусает samara.com.travelteh.ru 0 0 [] [13,884,3036,3937,3676,5088,5760,4140,16253,12325,10840,13010,14512,11161,10846,13833] [18,348,1010] [] 0 0 0 0 0 0 0 44 s<> 1 0 0 0 1571935 6 0 0 0 0 0 -1 1970-01-01 09:31:39 0 0 0 0 0 0 0 0 7922513651525631857 0 0 0 0 0 0 E 2014-03-17 21:33:24 16 1 2 13238 0 [42,18,51,3,1,107,5,76,9] 102972476 <09><><17>_Y<5F><59><EFBFBD><>5Ӵ. -1 -1 -1 L<> <09><> 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 <07> 0 [881286] 0 15284527577228392792 2853879804158083558 0 0 [] [] [] [] [] [] <09><><EFBFBD>+<2B><><EFBFBD><19><04><>bKQ9 0 0
|
||||
7843996633014281944 1 HD Tuning.com — Яндекс: нашлось 155 изображение 1 2014-03-17 00:19:43 2014-03-17 732797 1473201998 <09><>:<3A>[<5B>Uc<55><63>m<EFBFBD><6D><EFBFBD> 10 9953230021474208835 0 56 122 http://korer.ru/categories.ru%2Fekonomika/avtomobilization=RU,54,Omsk&api_set=0&metrika.ykt.ru&session_exp=3&uinfo http://vk.com/what=&price_usd[2]=2007211541377269&From=yandsearch.xml cars.autoliner.by tanks.co.il 0 0 [1,2,5,4,6,7,9,15,30,27,56,65,117,122,102,162,232,353,392,1004,3536,3324,3849,3121,4695,11503,11630] [333,3912,4602,12814,14512,11161,13393,12818] [18,348,1010] [28,267,694] 1339 555 57 8 0 0. 0 0 11 n<> 1 1 0 0 4029596 5 0 0 0 1525 1022 157 2014-03-17 18:29:34 0 0 0 0 utf-8 291 1 0 0 6059928905250790235 888971736 0 0 0 1 0 E 2014-03-17 15:42:33 55 1 2 0 0 [] 1704919744 <09><><17>_Y<5F><59><EFBFBD><>5Ӵ. 54213 -1 2 nD <09><> 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 <07> 0 [] 0 14658917723155478872 6299691003476403777 0 0 [] [] [] [] [] [] <09><><EFBFBD>+<2B><><EFBFBD><19><04><>bKQ9 191 1
|
||||
5988097430745182309 0 Blue - поиска бесплатно онлайн кино 2014 200 1 2014-03-17 00:20:32 2014-03-17 23447120 1689596706 <09><>:<3A>[<5B>Uc<55><63>m<EFBFBD><6D><EFBFBD> 196 742050043200223464 0 56 2 https://docum/search?lr=2138.shtml&lan=ru&lr=65&clid=1&metrika.ru/viper-marketimatcheski-bmw-avari.hurriyet.com/2081.html&lang=ru_RU&back_url=http://armark_id=1955474/3#magazin/Fotograflarlizey43.ru/neo2/#message/218000?block=34&criti-rezina-kiskusstounica-iddi-h288&roomtoolota-v-beli/kupok.ru/embed/sale/3376f0119/event={"respondenty-37160.html&lange=0,25008020037472004#!/alpart=25&lr=353&group_id=43825_et._299227-wh-5000_la_v_otseneo.html?vacancy/Voditem%2Fremotto=http://ntv.com/galerin-danske_power[1]=&run[1]=1&search?p=4&text=проекта для ночь фото&noreask=1&pos=46907&rpt=simages.yandex.ru/?text=райфай&lr=240&sid=344cec4d360d6f77ee5496188ba36ec52d34ba82cbb7420/?from=0&price_usd[2]=2014г..pptx&c=5328/40-fh-455-geroes/hdd/76905434e36cbecbe1488&t=1440&is_vative=0&sessionirovochek.com.tr&callbusing-dry.com/kateidzone=693 http://avito.ru/yandsearch?cl4url=korejskim_bustyteentrenk=0d44ad0d21519.vk.me\\%2F\\%2F7%2F79bacb78&keyno=0&l10n=ru&lr=10295914/2522506748be98be07d38931df1f263d8dVInNStpQGEJfncc0q1LMPmygPhyIDYBw&usg=AFQjCNE8DX7EE0_NKIq3gB7A3KIX1-aR2FqhXqBvz3LQPSCYkm9E58sHN8P-1RCtYnI-ai6jJO-UqhKj42End25lRmY0T3k2cW5peC1nZ3ZEd202eaefd6e7a0447c003aedd69&keyno=0&l10n=ru&mc=4.2288740&text=фильм видео ебут в LG&uuid=&state=2014&search?text=150&ToGeoRadius=0;pr=0.72363&group_by_modelie/prodam/na_dlya_descr&text=красные в москва-борьба дону&uuid=&state/compose/24500005147.12","city3d.com/friend-indows 8&firms/ru/phpbb/razlozhi/kvarticle/1008622.13726587818864162&group_id=221331.html?id=593390742&lr=43&lang=ru&lr=16&ved=0CEEQMDQidTAVMiAwQWT3hCVklnY2pWQXImPWF-Ix0DCUM2VSNiRn11Cx9-HV8gWlZwPGFicVNsN2NubmJ5SThEdE5mNWZmRDdoNHNWdMR2plYk05RkVrS0g3VmYyZzg5X1lpMjhlTXe0t2K_l9pQ1JJaZEtWSFRMcHlXODVWUFR&b64e=2&sp=true&custom_key=&where=all-days_f=28&text=британикация прихожей ads.searcher.exe yandex.ru 0 0 [] [] [239] [195] 1386 573 57 15 0 0.77 0 0 14 RT 1 1 0 0 824275 -1 0 0 0 2047 845 157 2014-03-17 04:56:54 5 1 17574 0 utf-8 315 0 0 0 8432981310612415352 912274077 0 0 0 0 0 5 2014-03-17 13:24:02 22 2 2 0 0 [] 1846783944 <09><><17>_Y<5F><59><EFBFBD><>5Ӵ. 50761 -1 14 nD <09><> 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 <07> 0 [2287648] 0 9228228430470592856 1127858875938894988 0 0 [] [] [] [] [] [] <09><><EFBFBD>+<2B><><EFBFBD><19><04><>bKQ9 62 0
|
||||
5595982650442128225 0 HD Tunik — Yandex.Diskusje - смотреть земельный сердце для творчественные 1 2014-03-17 00:35:15 2014-03-17 5769827 3227270238 <09><>:<3A>[<5B>Uc<55><63>m<EFBFBD><6D><EFBFBD> 241 233053311878322897 0 223 42 http:%2F%2Ftri--3449-dog-dokul/railer.com.tr%2Fgalle/1af5ccc766fe34b4fb2cf42000.ru/yandex.ua/tsifrovideo/privod=&search_stewarthundem%2Fthumb_probegom/metrika.ru/video/embed/516.user_id=21177064&text=есть вторию укажи и http://kiev-bahce.org/ptic.ee/rambler.russkiy_komnatnye images.yandex.ru.livemaster nn.ruvr.ru.msn.com 0 0 [3302,4132,10886,16137,15261,13770] [3666,4504,15216,10157,15095,11161] [18,348] [28,267] 317 346 57 0 0 0 0 4 s<> 1 1 1 1 S820_ROW 2723983 -1 0 0 0 430 269 157 2014-03-17 15:23:27 0 0 0 0 utf-8 510 0 0 0 7805792464674146167 76969984 0 0 0 0 0 E 2014-03-17 02:45:10 16 1 3 9905 0 [6,84,501,5,3699,4,3,42,1,95,81,100,3275] 2712278156 <09><><17>_Y<5F><59><EFBFBD><>5Ӵ. -1 -1 -1 nD Tp 0 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 0 0 <07> 0 [] 0 2303299187135300517 9034418581980298691 0 0 [] [] [] [] [] [] <09><><EFBFBD>+<2B><><EFBFBD><19><04><>bKQ9 70 0
|
||||
9171836528276527591 0 1 2014-03-17 00:38:27 2014-03-17 39843 1001608890 <09><>:<3A>[<5B>Uc<55><63>m<EFBFBD><6D><EFBFBD> 2 3945625386246318768 1 3 3 http:%2F%3Fpage=40000002483%2F2013-online.ua/yandsearch?cl4url=http://avito.ru/arte-test-album_id=18747f862da11X2lfbmFfdm96YXBhbmlwbGF5LnJ1LzI3ODcwL0FSL3RyYW0iOiJodHRwOi8vd3d38c58e7705/r=a.krakak-post.ru/neo2/#commetrikaturleri-oyunkolu.ru/category:100295162827%2F2605856&lr=2&img_url=http://a2.mmmbani/23000&sec=128-magok.ru/guru.xml?uid=&seats=1&ni=1&pos=597-pd-1&img_url=http://maamba.ru/compravda.com/kaskolko-po-iste/sale/59721756/detay%2F80654.1065-kan-bulana http://haber7.com/show_new_scope.ru/yandex.ru/forum/theme.css&act=Msg&CODE=01&enc=AZNpTqGK_eMHV_EMk6Ir7v8ttKEBbBUPMUYVZfSTc2UjdzcUl3WFFyVHI5MjI2V2tvbGxxZTUM4JTdkJTJmJTI1MjUyZnpZSDRTYUh$MGNEb3ZMMjJUZGKyVEMCVCR$VEM$U4M$VEM$U4MiVEMCUyNFp5TkVQTlZKLUhyOHU3NGU1dmEweEdpdjFEc3UydVBpbGxlX3J1X3J1X3J1XzI2MTY4 cars.aut yandex.ru 0 0 [62,11503] [13,15,11,123,84,507,3676,4504,12771,10157,10209,11161] [159,348] [28] 1297 555 29 10 6 0.70 0 0 11 s<> 1 1 0 0 1517307 2 0 30 0 966 146 209 2014-03-17 11:27:33 0 0 0 0 utf-8 510 0 0 0 5911662807462400660 580124962 0 0 0 0 0 E 2014-03-17 21:17:14 16 1 3 1670 0 [5,915,6,2547,58,95,54,351,10,7,76,3,22] 595606599 <09><><17>_Y<5F><59><EFBFBD><>5Ӵ. -1 -1 -1 nD <09><> 0 -1 0 0 257 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 <07> 0 [] 0 1251763233413907814 12578837811740469360 0 0 [] [] [] [] [] [] <09><><EFBFBD>+<2B><><EFBFBD><19><04><>bKQ9 5 0
|
||||
фриформулы видео про ласти кино
|
||||
новые фото русск онлайн листема ваз
|
||||
фикск
|
||||
автобусы для водольское молочная систем
|
||||
автобусы для водольское молочная систем
|
||||
orton
|
||||
видео 3.0 дизайн универсию бесплать
|
||||
телефоны для куринопластики
|
||||
новости слова нату пионы машинка
|
||||
коттек
|
||||
!(смотреть
|
||||
!(смотреть онлайн
|
||||
!(смотреть онлайн
|
||||
!(смотреть онлайн
|
||||
"boge 32-02 антом горшочка в саяхат
|
||||
"boge 32-02 антом горшочка в саяхат
|
||||
"boge 32-02 купить на андр сайт миренал согластья, доброво
|
||||
"irinç
|
||||
"irinç
|
||||
"irinç
|
||||
фриформулы видео про ласти кино
|
||||
новые фото русск онлайн листема ваз
|
||||
автобусы для водольское молочная систем
|
||||
фикск
|
||||
автобусы для водольское молочная систем
|
||||
orton
|
||||
видео 3.0 дизайн универсию бесплать
|
||||
телефоны для куринопластики
|
||||
коттек
|
||||
новости слова нату пионы машинка
|
||||
25703952 185.35847185332617 147211
|
||||
732797 145.03929351646454 475142
|
||||
792887 123.97688315087015 252197
|
||||
3807842 78.46108053235935 196033
|
||||
1704509 60.11621475966243 523264
|
||||
598875 20.267298451681793 337140
|
||||
vk.com.ua 670.6812170535467 205447 http://vk.com.ua/bb/viewforum/phpBB3/view_video-audioptolovye-igrydlja-konsor.net%2F1b.jpg","photos&mark_id]=1&clid=9965/page_list/?category/?dates&text=как объективен распроизводской музыка в в дом 2014&sort_by=0&extras[2]=&engine_turbo=&where=all&text=&etext=фото&noreask=1&referreel-sizdirdi/354/?dates&text=auth_key%3D%3DfrSMw%3D%3DfnSMmE%3D&k=false&ref=book.com%2Ftitle,pos,p0,source,web&text=&etext=&etext=железо ли не нужно корни и подробacтep
|
||||
avito.ru 89.56139198679928 243623 https://avito.ru/ru/viewer_id=213&lang=ru&mc=4.440634&text=blanketa=1&u_h=100&clid=10363872/?perskogo-babyblog.ru
|
||||
vk.com 88.93009846053418 680171 http://vk.com/what=&price_do=43013038511616004d00bc23789544.email.ru/masteredniy-check=1&redir?from=yandex.ru/cars
|
||||
yandex.ru 85.79982623523495 554773 http://yandex.ru/nissa-reza-zhieve.net/domashkola-sezon_5_yilmam/search:S}Djzgc3HUY4uMUUMHBGVjJwNGM&b64e=2&sign=ac2ed22e77dd8BAI0b2OGo3S1Z-TB38HNlJMWNHUnY3SnJpMC1VNUdDXzRFlGgHcfcqYsKnX9kihXZpXu-W2kZ3J0czElMjVEMlhVYncyUm1PU1J4MUMyb19hRk5ONFU0TE4tbjJxSk1aUWFYQ2JxVHlTM0lkUENkTutEKv9-Hq83GmeU0IuK2UJdI1V9NmJzfnZ-dVJVTDlGdzZ1NvUDRlSmNRRXcxa0QySzNBbkFGdFZXOTQ1S1RSVk1YYmRdIN4w51CjVhWUVVaQnl4dnd0dBMVRrUklteH8xIAEsQVgWCVtSeF5_d34cemhbU0dIfZpFn4D
|
||||
81.39774471008556 2237229 http://odnoklass/21/100kGnhs-5rVKsT7eyuRoyJlaSWRBdXJqb3RJb1NHQW5rS
|
||||
m.auto.ru 58.542011573622986 118027 http://m.auto.ru/yandsearch
|
||||
12431057718 12439931616 12448805514 12457679412 12466553310 12475427208 12484301106 12493175004 12502048902 12510922800 12519796698 12528670596 12537544494 12546418392 12555292290 12564166188 12573040086 12581913984 12590787882 12599661780 12608535678 12617409576 12626283474 12635157372 12644031270 12652905168 12661779066 12670652964 12679526862 12688400760 12697274658 12706148556 12715022454 12723896352 12732770250 12741644148 12750518046 12759391944 12768265842 12777139740 12786013638 12794887536 12803761434 12812635332 12821509230 12830383128 12839257026 12848130924 12857004822 12865878720 12874752618 12883626516 12892500414 12901374312 12910248210 12919122108 12927996006 12936869904 12945743802 12954617700 12963491598 12972365496 12981239394 12990113292 12998987190 13007861088 13016734986 13025608884 13034482782 13043356680 13052230578 13061104476 13069978374 13078852272 13087726170 13096600068 13105473966 13114347864 13123221762 13132095660 13140969558 13149843456 13158717354 13167591252 13176465150 13185339048 13194212946 13203086844 13211960742 13220834640
|
||||
3 1660732911 2564 21 1339
|
||||
3 1795610432 1808 49 1622
|
||||
3 442614592 1801 63 1622
|
||||
3 280750947 1722 92 1339
|
||||
3 1794713726 1565 143 1297
|
||||
3 2122160434 1449 29 1846
|
||||
3 2120191779 1431 117 1339
|
||||
3 3726560380 1338 37 1339
|
||||
3 1382059522 1212 25 1386
|
||||
3 2454020642 1108 25 1339
|
||||
7471271951844144258 131845389 4 0 1297
|
||||
8386464262207552359 3665428439 4 0 1339
|
||||
6383320355359027001 1672152193 3 0 1622
|
||||
5011883004918123038 2059694490 3 0 1339
|
||||
4623804743927895051 2585689692 3 0 1846
|
||||
4896329279548658060 3844140708 3 0 317
|
||||
4957606467207841227 2515273762 3 0 1339
|
||||
7207776217140698759 2284413021 3 0 1234
|
||||
7048968796501565378 1205582320 3 0 1297
|
||||
9134322042633578636 1356725149 3 0 1339
|
||||
5675065167782391037 1822803268 6 0 1639
|
||||
6017748248779667679 658305154 6 0 1732
|
||||
8398671415716539886 1822803268 6 0 1639
|
||||
9079582189403100617 658305154 6 0 1732
|
||||
8518686403866480653 1936154338 6 0 1339
|
||||
5857599815953425677 658305154 6 0 1732
|
||||
5222225648496431191 658305154 6 0 1732
|
||||
8476480323328385602 658305154 6 0 1732
|
||||
8829068086409261573 658305154 6 0 1732
|
||||
8831191627340008721 1822803268 6 0 1639
|
||||
http://public_search 311119
|
||||
http://auto.ru/chatay-barana.ru/traction.html#maybettaya 189442
|
||||
http://korer.ru/categories.ru/?vkb 142669
|
||||
http://main=hurriyet.com/iframe/frm_index.ru/photofunki-sayesilcipo-showthredir?from=&seatsTo=&purchynet.com/galaxy-nosti.ru/preso.tv/Archi.shtml?002 122598
|
||||
http://korablitz.ru/L_1OFFERS_CRD 45069
|
||||
http://bravoslava-230v 32907
|
||||
http://images.yandex.ru 22100
|
||||
http://doc/00003713844324&education.html?logi-38-rasstreferer_id 21145
|
||||
http://rutube.ru/patianu 19064
|
||||
http://search?win=11&pos=22&img_url=http:%2F%2Fcs411276 19060
|
||||
1 http://public_search 311119
|
||||
1 http://auto.ru/chatay-barana.ru/traction.html#maybettaya 189442
|
||||
1 http://korer.ru/categories.ru/?vkb 142669
|
||||
1 http://main=hurriyet.com/iframe/frm_index.ru/photofunki-sayesilcipo-showthredir?from=&seatsTo=&purchynet.com/galaxy-nosti.ru/preso.tv/Archi.shtml?002 122598
|
||||
1 http://korablitz.ru/L_1OFFERS_CRD 45069
|
||||
1 http://bravoslava-230v 32907
|
||||
1 http://images.yandex.ru 22100
|
||||
1 http://doc/00003713844324&education.html?logi-38-rasstreferer_id 21145
|
||||
1 http://rutube.ru/patianu 19064
|
||||
1 http://search?win=11&pos=22&img_url=http:%2F%2Fcs411276 19060
|
||||
2950145570 2950145569 2950145568 2950145567 8149
|
||||
2408492821 2408492820 2408492819 2408492818 7770
|
||||
2494028488 2494028487 2494028486 2494028485 7696
|
||||
1688720600 1688720599 1688720598 1688720597 7681
|
||||
356903718 356903717 356903716 356903715 6817
|
||||
908127740 908127739 908127738 908127737 6624
|
||||
45907785 45907784 45907783 45907782 6556
|
||||
1567954933 1567954932 1567954931 1567954930 6203
|
||||
406416527 406416526 406416525 406416524 6015
|
||||
1410634230 1410634229 1410634228 1410634227 5742
|
||||
|
@ -1 +1,43 @@
|
||||
select count() from test.hits_s3;
|
||||
SELECT count() FROM test.hits_s3;
|
||||
SELECT count() FROM test.hits_s3 WHERE AdvEngineID != 0;
|
||||
SELECT sum(AdvEngineID), count(), avg(ResolutionWidth) FROM test.hits_s3 ;
|
||||
SELECT sum(UserID) FROM test.hits_s3 ;
|
||||
SELECT uniq(UserID) FROM test.hits_s3 ;
|
||||
SELECT uniq(SearchPhrase) FROM test.hits_s3 ;
|
||||
SELECT min(EventDate), max(EventDate) FROM test.hits_s3 ;
|
||||
SELECT AdvEngineID, count() FROM test.hits_s3 WHERE AdvEngineID != 0 GROUP BY AdvEngineID ORDER BY count() DESC;
|
||||
SELECT RegionID, uniq(UserID) AS u FROM test.hits_s3 GROUP BY RegionID ORDER BY u DESC LIMIT 10;
|
||||
SELECT RegionID, sum(AdvEngineID), count() AS c, avg(ResolutionWidth), uniq(UserID) FROM test.hits_s3 GROUP BY RegionID ORDER BY c DESC LIMIT 10;
|
||||
SELECT MobilePhoneModel, uniq(UserID) AS u FROM test.hits_s3 WHERE MobilePhoneModel != '' GROUP BY MobilePhoneModel ORDER BY u DESC LIMIT 10;
|
||||
SELECT MobilePhone, MobilePhoneModel, uniq(UserID) AS u FROM test.hits_s3 WHERE MobilePhoneModel != '' GROUP BY MobilePhone, MobilePhoneModel ORDER BY u DESC LIMIT 10;
|
||||
SELECT SearchPhrase, count() AS c FROM test.hits_s3 WHERE SearchPhrase != '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;
|
||||
SELECT SearchPhrase, uniq(UserID) AS u FROM test.hits_s3 WHERE SearchPhrase != '' GROUP BY SearchPhrase ORDER BY u DESC LIMIT 10;
|
||||
SELECT SearchEngineID, SearchPhrase, count() AS c FROM test.hits_s3 WHERE SearchPhrase != '' GROUP BY SearchEngineID, SearchPhrase ORDER BY c DESC LIMIT 10;
|
||||
SELECT UserID, count() FROM test.hits_s3 GROUP BY UserID ORDER BY count() DESC LIMIT 10;
|
||||
SELECT UserID, SearchPhrase, count() FROM test.hits_s3 GROUP BY UserID, SearchPhrase ORDER BY count() DESC LIMIT 10;
|
||||
SELECT UserID, SearchPhrase, count() FROM test.hits_s3 GROUP BY UserID, SearchPhrase LIMIT 10;
|
||||
SELECT UserID, toMinute(EventTime) AS m, SearchPhrase, count() FROM test.hits_s3 GROUP BY UserID, m, SearchPhrase ORDER BY count() DESC LIMIT 10;
|
||||
SELECT UserID FROM test.hits_s3 WHERE UserID = 12345678901234567890;
|
||||
SELECT count() FROM test.hits_s3 WHERE URL LIKE '%metrika%';
|
||||
SELECT SearchPhrase, any(URL), count() AS c FROM test.hits_s3 WHERE URL LIKE '%metrika%' AND SearchPhrase != '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;
|
||||
SELECT SearchPhrase, any(URL), any(Title), count() AS c, uniq(UserID) FROM test.hits_s3 WHERE Title LIKE '%Яндекс%' AND URL NOT LIKE '%.yandex.%' AND SearchPhrase != '' GROUP BY SearchPhrase ORDER BY c DESC LIMIT 10;
|
||||
SELECT * FROM test.hits_s3 WHERE URL LIKE '%metrika%' ORDER BY EventTime LIMIT 10;
|
||||
SELECT SearchPhrase FROM test.hits_s3 WHERE SearchPhrase != '' ORDER BY EventTime LIMIT 10;
|
||||
SELECT SearchPhrase FROM test.hits_s3 WHERE SearchPhrase != '' ORDER BY SearchPhrase LIMIT 10;
|
||||
SELECT SearchPhrase FROM test.hits_s3 WHERE SearchPhrase != '' ORDER BY EventTime, SearchPhrase LIMIT 10;
|
||||
SELECT CounterID, avg(length(URL)) AS l, count() AS c FROM test.hits_s3 WHERE URL != '' GROUP BY CounterID HAVING c > 100000 ORDER BY l DESC LIMIT 25;
|
||||
SELECT domainWithoutWWW(Referer) AS key, avg(length(Referer)) AS l, count() AS c, any(Referer) FROM test.hits_s3 WHERE Referer != '' GROUP BY key HAVING c > 100000 ORDER BY l DESC LIMIT 25;
|
||||
SELECT sum(ResolutionWidth), sum(ResolutionWidth + 1), sum(ResolutionWidth + 2), sum(ResolutionWidth + 3), sum(ResolutionWidth + 4), sum(ResolutionWidth + 5), sum(ResolutionWidth + 6), sum(ResolutionWidth + 7), sum(ResolutionWidth + 8), sum(ResolutionWidth + 9), sum(ResolutionWidth + 10), sum(ResolutionWidth + 11), sum(ResolutionWidth + 12), sum(ResolutionWidth + 13), sum(ResolutionWidth + 14), sum(ResolutionWidth + 15), sum(ResolutionWidth + 16), sum(ResolutionWidth + 17), sum(ResolutionWidth + 18), sum(ResolutionWidth + 19), sum(ResolutionWidth + 20), sum(ResolutionWidth + 21), sum(ResolutionWidth + 22), sum(ResolutionWidth + 23), sum(ResolutionWidth + 24), sum(ResolutionWidth + 25), sum(ResolutionWidth + 26), sum(ResolutionWidth + 27), sum(ResolutionWidth + 28), sum(ResolutionWidth + 29), sum(ResolutionWidth + 30), sum(ResolutionWidth + 31), sum(ResolutionWidth + 32), sum(ResolutionWidth + 33), sum(ResolutionWidth + 34), sum(ResolutionWidth + 35), sum(ResolutionWidth + 36), sum(ResolutionWidth + 37), sum(ResolutionWidth + 38), sum(ResolutionWidth + 39), sum(ResolutionWidth + 40), sum(ResolutionWidth + 41), sum(ResolutionWidth + 42), sum(ResolutionWidth + 43), sum(ResolutionWidth + 44), sum(ResolutionWidth + 45), sum(ResolutionWidth + 46), sum(ResolutionWidth + 47), sum(ResolutionWidth + 48), sum(ResolutionWidth + 49), sum(ResolutionWidth + 50), sum(ResolutionWidth + 51), sum(ResolutionWidth + 52), sum(ResolutionWidth + 53), sum(ResolutionWidth + 54), sum(ResolutionWidth + 55), sum(ResolutionWidth + 56), sum(ResolutionWidth + 57), sum(ResolutionWidth + 58), sum(ResolutionWidth + 59), sum(ResolutionWidth + 60), sum(ResolutionWidth + 61), sum(ResolutionWidth + 62), sum(ResolutionWidth + 63), sum(ResolutionWidth + 64), sum(ResolutionWidth + 65), sum(ResolutionWidth + 66), sum(ResolutionWidth + 67), sum(ResolutionWidth + 68), sum(ResolutionWidth + 69), sum(ResolutionWidth + 70), sum(ResolutionWidth + 71), sum(ResolutionWidth + 72), sum(ResolutionWidth + 73), sum(ResolutionWidth + 74), sum(ResolutionWidth + 75), sum(ResolutionWidth + 76), sum(ResolutionWidth + 77), sum(ResolutionWidth + 78), sum(ResolutionWidth + 79), sum(ResolutionWidth + 80), sum(ResolutionWidth + 81), sum(ResolutionWidth + 82), sum(ResolutionWidth + 83), sum(ResolutionWidth + 84), sum(ResolutionWidth + 85), sum(ResolutionWidth + 86), sum(ResolutionWidth + 87), sum(ResolutionWidth + 88), sum(ResolutionWidth + 89) FROM test.hits_s3;
|
||||
SELECT SearchEngineID, ClientIP, count() AS c, sum(Refresh), avg(ResolutionWidth) FROM test.hits_s3 WHERE SearchPhrase != '' GROUP BY SearchEngineID, ClientIP ORDER BY c DESC LIMIT 10;
|
||||
SELECT WatchID, ClientIP, count() AS c, sum(Refresh), avg(ResolutionWidth) FROM test.hits_s3 WHERE SearchPhrase != '' GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10;
|
||||
SELECT WatchID, ClientIP, count() AS c, sum(Refresh), avg(ResolutionWidth) FROM test.hits_s3 GROUP BY WatchID, ClientIP ORDER BY c DESC LIMIT 10;
|
||||
SELECT URL, count() AS c FROM test.hits_s3 GROUP BY URL ORDER BY c DESC LIMIT 10;
|
||||
SELECT 1, URL, count() AS c FROM test.hits_s3 GROUP BY 1, URL ORDER BY c DESC LIMIT 10;
|
||||
SELECT ClientIP AS x, x - 1, x - 2, x - 3, count() AS c FROM test.hits_s3 GROUP BY x, x - 1, x - 2, x - 3 ORDER BY c DESC LIMIT 10;
|
||||
SELECT URL, count() AS PageViews FROM test.hits_s3 WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND NOT DontCountHits AND NOT Refresh AND notEmpty(URL) GROUP BY URL ORDER BY PageViews DESC LIMIT 10;
|
||||
SELECT Title, count() AS PageViews FROM test.hits_s3 WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND NOT DontCountHits AND NOT Refresh AND notEmpty(Title) GROUP BY Title ORDER BY PageViews DESC LIMIT 10;
|
||||
SELECT URL, count() AS PageViews FROM test.hits_s3 WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND NOT Refresh AND IsLink AND NOT IsDownload GROUP BY URL ORDER BY PageViews DESC LIMIT 1000;
|
||||
SELECT TraficSourceID, SearchEngineID, AdvEngineID, ((SearchEngineID = 0 AND AdvEngineID = 0) ? Referer : '') AS Src, URL AS Dst, count() AS PageViews FROM test.hits_s3 WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND NOT Refresh GROUP BY TraficSourceID, SearchEngineID, AdvEngineID, Src, Dst ORDER BY PageViews DESC LIMIT 1000;
|
||||
SELECT URLHash, EventDate, count() AS PageViews FROM test.hits_s3 WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND NOT Refresh AND TraficSourceID IN (-1, 6) AND RefererHash = halfMD5('http://example.ru/') GROUP BY URLHash, EventDate ORDER BY PageViews DESC LIMIT 100;
|
||||
SELECT WindowClientWidth, WindowClientHeight, count() AS PageViews FROM test.hits_s3 WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-31' AND NOT Refresh AND NOT DontCountHits AND URLHash = halfMD5('http://example.ru/') GROUP BY WindowClientWidth, WindowClientHeight ORDER BY PageViews DESC LIMIT 10000;
|
||||
SELECT toStartOfMinute(EventTime) AS Minute, count() AS PageViews FROM test.hits_s3 WHERE CounterID = 62 AND EventDate >= '2013-07-01' AND EventDate <= '2013-07-02' AND NOT Refresh AND NOT DontCountHits GROUP BY Minute ORDER BY Minute;
|
||||
|
Loading…
Reference in New Issue
Block a user