Yes, you can concatenate two strings using Impala. Refer to the below query:
select concat('cluster id' , 'cluster name');
+---------------------------------------+
| concat('cluster id ', 'cluster name') |
+---------------------------------------+
| cluster id cluster name |
+---------------------------------------+