Advertisement
dimuska139

Untitled

Oct 18th, 2021
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. HashAggregate (cost=184379.25..193041.35 rows=692968 width=15) (actual time=3458.736..3461.309 rows=1651 loops=1)
  2. Group Key: l.name, (c.created_at)::date
  3. Buffers: shared hit=211741
  4. -> Hash Join (cost=83363.68..179181.99 rows=692968 width=7) (actual time=1411.261..3363.212 rows=578665 loops=1)
  5. Hash Cond: (fi.locale_id = l.id)
  6. Buffers: shared hit=211741
  7. -> Hash Join (cost=83359.34..175584.29 rows=692968 width=12) (actual time=1397.444..3210.153 rows=578665 loops=1)
  8. Hash Cond: (fi.film_id = f.id)
  9. Buffers: shared hit=211736
  10. -> Seq Scan on films_info fi (cost=0.00..66192.40 rows=5094100 width=8) (actual time=0.015..816.283 rows=5086436 loops=1)
  11. Buffers: shared hit=152514
  12. -> Hash (cost=79003.37..79003.37 rows=348477 width=12) (actual time=1396.087..1396.089 rows=378852 loops=1)
  13. Buckets: 524288 Batches: 1 Memory Usage: 20373kB
  14. Buffers: shared hit=59222
  15. -> Hash Join (cost=44378.38..79003.37 rows=348477 width=12) (actual time=406.905..1313.815 rows=378852 loops=1)
  16. Hash Cond: (f.content_id = c.id)
  17. Buffers: shared hit=59222
  18. -> Seq Scan on films f (cost=0.00..27900.52 rows=2561702 width=8) (actual time=0.018..380.226 rows=2563650 loops=1)
  19. Buffers: shared hit=22835
  20. -> Hash (cost=39500.04..39500.04 rows=390267 width=12) (actual time=405.583..405.584 rows=378852 loops=1)
  21. Buckets: 524288 Batches: 1 Memory Usage: 20373kB
  22. Buffers: shared hit=36387
  23. -> Seq Scan on content c (cost=0.00..39500.04 rows=390267 width=12) (actual time=0.020..334.897 rows=378852 loops=1)
  24. Filter: ((content_type)::text = 'movie'::text)
  25. Rows Removed by Filter: 2490055
  26. Buffers: shared hit=36387
  27. -> Hash (cost=2.04..2.04 rows=184 width=7) (actual time=13.790..13.790 rows=184 loops=1)
  28. Buckets: 1024 Batches: 1 Memory Usage: 16kB
  29. Buffers: shared hit=2
  30. -> Seq Scan on locales l (cost=0.00..2.04 rows=184 width=7) (actual time=13.735..13.763 rows=184 loops=1)
  31. Buffers: shared hit=2
  32. Planning Time: 1.345 ms
  33. JIT:
  34. Functions: 33
  35. Options: Inlining false, Optimization false, Expressions true, Deforming true
  36. Timing: Generation 1.885 ms, Inlining 0.000 ms, Optimization 0.632 ms, Emission 12.867 ms, Total 15.384 ms
  37. Execution Time: 3525.058 ms
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement